Latest activity

  • T
    Yeah, so far so good, tried on a couple different Macs and it's all working perfectly!
  • bit 9
    The two most recent blog posts from CycFi Research (links: part 1, part 2) are about a lightweight "cross-platform C++ library for audio digital signal processing". According to the first part of the article, "The code is wicked fast, with...
  • h4yn0nnym0u5e
    Haven't checked your video: don't think it was part of the original post, and in any case I don't do Instagram so no way of seeing it. To be honest, apart from confirming that you have an issue, it's unlikely that it would help resolve things...
  • mjs513
    I'm going to go with answers: no and probably not, but maybe. First, no, chips added to the bottom of Teensy 4.1 aren't ever accessed as EEPROM. They are used with LittleFS as a filesystem. Maybe that can be useful, but if you're expecting it...
  • W
    sorry I re-edited my question. Ok so if this works for you then it must be the configuration settings? Did you check my video? can you guess what could be the cause? I think the code I was using the example test code which Alex mentioned in...
  • J
    I know that Arduino have their "Pro" version to be used in industry applications. Do the Teensy 4.1 have some equivalent? I'm in the startup of making a CANbus sensor reader and I really like the Teensy 4.1 but if I need to take over some of the...
  • M
    Hey!Based on your description, the issue could come from USB power, Teensy 4.1 is quite "power-hungry," especially at higher CPU frequencies.Try adding a 100uF capacitor between VUSB and GND, it might help stabilize the voltage, It helped me with...
  • h4yn0nnym0u5e
    Works for me, here, on Windows 10, with a version of your sketch from post #127 modified to initialise the CS42448 properly. I played back an 8-channel WAV file using GoldWave, and got the expected outputs. Your screenshot is very pretty, but the...
  • H
    Herlink replied to the thread Teensy 3.2 modules for sale.
    Como posso encomendar a placa?
  • PaulStoffregen
    I'm going to go with answers: no and probably not, but maybe. First, no, chips added to the bottom of Teensy 4.1 aren't ever accessed as EEPROM. They are used with LittleFS as a filesystem. Maybe that can be useful, but if you're expecting it...
  • W
    Hey I couldn't post pic in private conversation with @alex6679 (i don't want to bother people with low level debugging), but I am having this in plotter, however, as said, it only lasts for 0.5 second and then it goes back to 0 when the...
    • Screenshot 2024-10-04 at 2.55.24 PM .jpg
  • P
    palmerr replied to the thread Ethernet audio library.
    :-)
  • BriComp
    BriComp reacted to PaulStoffregen's post in the thread Teensy.exe icon with Like Like.
    Just to add a bit more info, Teensy Loader is built using wxwidgets for all the GUI stuff. Internally these buttons are created from PNG files that get built into the code and converted to a wxwidgets abstraction class for images, and then used...
  • defragster
    defragster reacted to shawn's post in the thread Ethernet audio library with Like Like.
    Those are the same. sei() is defined to be __enable_irq() and cli() is defined to be __disable_irq(). Also interrupts() and noInterrupts() are defined to be those too.
  • S
    shawn replied to the thread Ethernet audio library.
    Those are the same. sei() is defined to be __enable_irq() and cli() is defined to be __disable_irq(). Also interrupts() and noInterrupts() are defined to be those too.
  • P
    palmerr replied to the thread Ethernet audio library.
    Thanks - I'll ponder the options. Standard Teensy Audio practice is to hide the regular loop calls. While testing, I'm using an explicit call in the main loop to avoid yet another complexity! On a different note, a possibly dumb question: which...
  • mjs513
    mjs513 reacted to PaulStoffregen's post in the thread Teensy.exe icon with Like Like.
    Just to add a bit more info, Teensy Loader is built using wxwidgets for all the GUI stuff. Internally these buttons are created from PNG files that get built into the code and converted to a wxwidgets abstraction class for images, and then used...
  • mjs513
    Why would you want to use this chip? It's slower and has less capacity than the 128mb flash chips that are usually used with a Teensy 4.1.
  • defragster
    defragster reacted to PaulStoffregen's post in the thread Teensy.exe icon with Wow Wow.
    Just to add a bit more info, Teensy Loader is built using wxwidgets for all the GUI stuff. Internally these buttons are created from PNG files that get built into the code and converted to a wxwidgets abstraction class for images, and then used...
  • PaulStoffregen
    PaulStoffregen replied to the thread Teensy.exe icon.
    Just to add a bit more info, Teensy Loader is built using wxwidgets for all the GUI stuff. Internally these buttons are created from PNG files that get built into the code and converted to a wxwidgets abstraction class for images, and then used...
  • PaulStoffregen
    PaulStoffregen replied to the thread Teensy.exe icon.
    It's on my list. So is missing toolbar on MacOS, also mentioned the the beta test thread. Probably not technically the same issue, but both likely to be addressed looking into the toolbar details (which really haven't changed since the very...
  • B
    Paul, thanks, The similar question I'm trying to answer is, can the T4 perform the equivalent of a power-on reset from one of the IMXRT1060's built-in WDT's without running a wire out and back in, so to speak? I'm not asking if any outside...
  • defragster
    defragster replied to the thread Teensy.exe icon.
    That's what led me here - should have linked back - seemed this new clean thread might allow it to get discovered and resolved on its own schedule with beta
  • C
    I am budgeting out/planning a MIDI organ, but I can't figure out a cheap scanning method. There are some similar threads on this forum, but none have the answers I need. I will be using three independent Fatar TP/9S keybeds and I want to know a...
  • T
    I am trying to code a display for a game I am making for a design class using a teensy 4.1. I figured an adafruit display would be a good display for a LCD beginner like me but most examples are made specifically for arduinos and the library's...
  • KurtE
    KurtE reacted to mjs513's post in the thread Teensy.exe icon with Like Like.
    Yeah a bunch of reports on the beta2 thread as well, here is one: https://forum.pjrc.com/index.php?threads/teensyduino-1-60-beta-2.75922/post-350569
  • PaulStoffregen
    These section type conflict errors happen for a couple reasons. Can't see enough of your code to say why. Briefly, #1 use of PROGMEM on functions (it's meant for data) or FLASHMEM on data (it's meant for functions). It's kind of a silly...
  • mjs513
    mjs513 replied to the thread Teensy.exe icon.
    Yeah a bunch of reports on the beta2 thread as well, here is one: https://forum.pjrc.com/index.php?threads/teensyduino-1-60-beta-2.75922/post-350569
  • J
    You seem to have a bunch of library conflicts there, in some cases the compiler is using the teensy libraries and other cases it isn't. Why do you have other copies of libraries that are included in the Teensy installation?
  • T
    Hello Team, We are able to connect - - Android Studio running on the MAC and TCL Tablet over Wi-Fi - TCL Tablet and Teensyduino RawHID connected through USB-C to Micro-USB cable - Teensy 4.0 successfully programmed through Tools > USB Type...
    • Screenshot 2024-10-03 at 5.15.06 PM.png
    • Page-12.drawio.png
  • E
    I.m using Teensy 4.1 under Win 10 Home with 32 Gb of memory using IDE 2.3.3. I get the following error message: ================== D:\AlsRevisedEd4\20WSoftware\SDT-mainBill\SDT-mainBill.ino: In function 'Splash'...
  • T
    timbraun reacted to tomas's post in the thread Stereo guitar/bass cabinet emulation with Like Like.
    Your project looks fantastic and I admire your productivity. Arriving to finished version in so little time is an achievement. I wish I could motivate myself to do more 🙂
  • T
    timbraun reacted to Pio's post in the thread Stereo guitar/bass cabinet emulation with Like Like.
    Got the AK5552+AK4452 working with 32bit/44.1kHz. The difference is huge. Practically zero oscillation and much lower noise. Here is a visual comparison of the hi gain preset 5 output, inputs are shorted to GND:
  • h4yn0nnym0u5e
    You're right, they could be done incrementally, though my feeling is that having only part of the changes will make things a bit unwieldy for anyone who wants to try them out. But that'd be Paul's call - so long as we cross-reference the PRs then...
  • T
    timbraun reacted to Pio's post in the thread Stereo guitar/bass cabinet emulation with Like Like.
    Oh, please, any fixes are welcome. Meanwhile, a track i have been working on for a few weeks. All sounds are made with using this project on T4.1+WM8731, some post processing is used on the mix, nothing too drastic, though.
  • T
    timbraun reacted to Pio's post in the thread Stereo guitar/bass cabinet emulation with Like Like.
    Teensy 4.0 Cabsim project update. Hardware tested successfully. I had to bodge in a few changes, the final pcb will have all of them updated. Main PCB: In the final version i made both, the Teensy and the display pads offset, so they can be...
  • h4yn0nnym0u5e
    Built and tried it, it works for me, both files play repeatedly as intended. The files themselves are fine. Only differences from your setup are I've used a Teensy 4.1, but I left the code as-is and put the files on the audio adaptor SD card, so...
  • KurtE
    KurtE replied to the thread Teensyduino 1.60 Beta #2.
    SoftwareSerial: Paul, Quick note: As you may have noticed on Arduino forum, I have been playing with your updated SoftwareSerial code, which is pretty nice. Wondering on the RX side, if there was a reason you stuck using digitalRead instead of...
  • A
    @h4yn0nnym0u5e: If we really make PRs at some point, I think we even don't need to make synced PRs for the core and for the audio library. We could split up our changes into three PRs: 1. A first PR can be done for the files in...
  • S
    okey i understant,its my first time i use teensy cause of a big project i have that it seems a good candidate,but why its so dificult to find library's for the 4x model? i dont get it.
  • joebmz98
    Evening, here are the audio files I was using
  • defragster
    Why would you want to use this chip? It's slower and has less capacity than the 128mb flash chips that are usually used with a Teensy 4.1.
  • J
    Why would you want to use this chip? It's slower and has less capacity than the 128mb flash chips that are usually used with a Teensy 4.1.
  • J
    I tried to train a model for it, with hidden_size of 16, it spent nearly all the processing power available... this hidden_size is the maximum that I can get.
  • KurtE
    KurtE reacted to shawn's post in the thread Teensyduino 1.60 Beta #2 with Like Like.
    I noticed that the Teensy loader app is missing the top buttons. macOS 14.7. Picture attached. Note that nothing happens when I click on the ">>" image on the right.
  • KurtE
    KurtE reacted to mjs513's post in the thread Teensyduino 1.60 Beta #2 with Like Like.
    With 2.3.3 on windows 11 If I click on the buttons they are active but looks mostly all greyed out. Cant remember if it was otherwise in previous revisions. EDIT: Checked IDE 1.8.19 and same thing
  • defragster
    https://www.st.com/en/memories/m95p16-i.html https://www.digikey.com/en/products/detail/M95P16-IXMCT-E/497-M95P16-IXMCT-E-ND/21700579 https://www.st.com/resource/en/datasheet/m95p16-i.pdf That suggests it can do QSPI Quad access and has a 4x2...
  • defragster
    defragster replied to the thread Teensy.exe icon.
    Same here on Win 11 The 'Hover' Alternate labels appear and the buttons work - but icons are missing. The do not change when taken out of Auto mode:
    • 1727972346932.png
  • defragster
    defragster reacted to WMXZ's post in the thread Teensy.exe icon with Like Like.
    Using TD on Arduino2.0.3/4 on Windows11, I got this Icon, missing the program and reboot icon. Is that normal behavior?
  • defragster
    defragster reacted to KurtE's post in the thread Teensyduino 1.60 Beta #2 with Like Like.
    In my post #10 in this thread, my older MAC shows: Windows 11: Mine is like @mjs513, which I reported in post #9 on this thread. The First post I saw on it was at: https://forum.pjrc.com/index.php?threads/teensy-exe-icon.75925/
Back
Top