Latest activity

  • A
    Correct me if I'm wrong but the Uno uses 5V? Do not connect 5V signals to the Teensy! It can only handle 3.3V and will be permanently damaged.
  • A
    The T4 is absolutely _not_ 5V tolerant, 3.3V is the limit for all pins - this is clearly stated in the data for the device. You require level converters to talk to a 5V chip (if you haven't fried the T4 already).
  • A
    Haha, awesome! I was sitting there hours on end but I forgot the most important aspect. After a few checks my Teensy seems to be fine despite the high voltage. Unfortunately, I haven't got a logic level converter at hand right now but I tried it...
  • KurtE
    KurtE reacted to jmarsh's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    I can see how this is useful for supporting the existing different boards (4.x vs. micromod) that redefine arduino pin numbers to different IMXRT pins but I don't see how it would help with custom boards due to this: if (pin >...
  • KurtE
    Works for me, with the Devboard, as I created a variant that had all of the extra pins defined. Otherwise you would not have pin numbers to work with... True, typo...
  • manicksan
    think your compile error is because of void PlayTunedNote(int note, int amp = DEFAULT_AMPLITUDE, float freqAdj); should be void PlayTunedNote(int note, float freqAdj, int amp = DEFAULT_AMPLITUDE); as the amp parameter is optional note...
  • J
    I can see how this is useful for supporting the existing different boards (4.x vs. micromod) that redefine arduino pin numbers to different IMXRT pins but I don't see how it would help with custom boards due to this: if (pin >...
  • wwatson
    wwatson reacted to KurtE's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    A couple of questions and things I am playing with... With the 4.5 and SD adapter: guessing you used SDIO pins? (Same ones as defined for Micromod?) of if SPI which IO pins? CSI pins - I am in the process of integrating in some CSI support...
  • mjs513
    mjs513 reacted to KurtE's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    A couple of questions and things I am playing with... With the 4.5 and SD adapter: guessing you used SDIO pins? (Same ones as defined for Micromod?) of if SPI which IO pins? CSI pins - I am in the process of integrating in some CSI support...
  • KurtE
    A couple of questions and things I am playing with... With the 4.5 and SD adapter: guessing you used SDIO pins? (Same ones as defined for Micromod?) of if SPI which IO pins? CSI pins - I am in the process of integrating in some CSI support...
  • J
    The SDRAM_EXTMEM github repository is the same (alternative to mjs513's) repository that I've been working all along, because I prefer the different initialization method (using startup_middle_hook without needing to be explicitly called) and the...
  • defragster
    defragster replied to the thread Win11 doesnt recognize Teensy.
    Pushing the Button was good but, Opps - missed the BLINK part!
  • defragster
    This is an alternate library to SDRAM_t4? A bit of ReadMe to see about changing? Just drop ref to SDRAM_t4 and perhaps make libray\SDRAM and include SDRAM.H? Other details or changes?
  • PaulS
    PaulS replied to the thread External Power Supply Issues.
    Just to be sure: are we talking about this module? Why not try to get the basic arrangement to work first as shown in the WIKI? (speakers connected directly to the module) And as @MarkT stated, how does your circuitry look exactly when powered by...
  • C
    That's great thanks. I can hopefully work with the first method. I'll need to calculate the freqAdj for each note so we always get the same nr cents correction, but that's just some musical knowledge and maths which seems do-able. I've added a...
  • R
    Thanks for the follow up. It turned out that the particular encoder I was testing was worse than most others that I tried (of the same model). But it would be nice to have my design more immune to sample variation. I'll give the polled version a try.
  • S
    Because I want to reduce chip load and the audio encryption used requires 8k..
  • M
    Yes, you are missing SYS_FS and MCLK_FREQ, also in CHIP_CLK_CTRL which sets the clock, this in combination with the RATE_MODE determines the sample rate, see datasheet table 18. I think you'll need to reduce the MCLK frequency sent to the chip...
  • M
    MarkT replied to the thread External Power Supply Issues.
    Well the schematic does not show the power supply arrangements or decoupling for one thing. Where does the +/-15V come from for instance? I do note the TL072 trying to drive 470nF through 16 ohms - likely to oscillate, opamps can't drive heavy...
  • M
    The T4 is absolutely _not_ 5V tolerant, 3.3V is the limit for all pins - this is clearly stated in the data for the device. You require level converters to talk to a 5V chip (if you haven't fried the T4 already).
  • M
    MarkT replied to the thread Win11 doesnt recognize Teensy.
    Recommend testing every USB cable you get whether it has data and if not marking it conspicuously...
  • A
    alonborn replied to the thread Win11 doesnt recognize Teensy.
    you were right :) I tried several cables, both were power only :) tried another one and it worked :)
  • PaulStoffregen
    The red LED blinks in several ways. If you are seeing a slow steady blink (on time same as off time) repeating continuously (no pattern of blinks separated by a longer time with the LED off), this means your Teensy went into bootloader mode but...
  • luni
    The library is pretty imune against any bouncing as long as bounces don't overlap. I.e., if your encoder bounces so badly that one switch still bounces while the other switch changes transition you might get wrong counts. The same might happen if...
    • 1713593786665.png
    • 1713593889589.png
  • defragster
    defragster replied to the thread Win11 doesnt recognize Teensy.
    That console note suggest what might be the best solution. Under TOOLS find PORTS and select the correct item under 'teensy ports'
  • D
    Dogbone06 reacted to jmarsh's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    Pushed the "DCD" intialization example to github: https://github.com/A-Dunstan/SDRAM_EXTMEM/tree/master/examples/DCD_Init The magic is in dcd.cpp: DeviceConfigurationData is basically a uint32_t array of registers and values to be put in them...
  • J
    Pushed the "DCD" intialization example to github: https://github.com/A-Dunstan/SDRAM_EXTMEM/tree/master/examples/DCD_Init The magic is in dcd.cpp: DeviceConfigurationData is basically a uint32_t array of registers and values to be put in them...
  • A
    alonborn replied to the thread Win11 doesnt recognize Teensy.
    after I press the button, a Red led is blinking next to the USB port on the Teensy. Then, I started to download the 'blink' example, and this is what I got: It looks like it is not connected to the Teensy... right?
    • 1713592397238.png
  • R
    Rezo reacted to mjs513's post in the thread New Camera Library for Teensy Micromod/4.1 with Love Love.
    @KurtE and I have been at it again. This time creating a library that supports a number Arducam/Arduino camera modules: Model FrameSizes Pixel Formats Omnivision OV2640 FRAMESIZE_VGA //640x480 FRAMESIZE_QQVGA, // 160x120...
  • R
    On a somewhat related note, I find with the encoder I'm using that I don't always get changes when clicking to a next detent. Switching to full mode shows more or less than the expected 4 pulse changes. Is there a way of dealing with this in...
  • defragster
    defragster replied to the thread Win11 doesnt recognize Teensy.
    The Teensy may be in a state with USB not present or not functioning when connected. Press the Program button on the Teensy and see if that changes anything
  • A
    Hi, I've just received my first Teensy 4.1. I have Win11 and Arduino IDE 2.3.2. I've added it to the preferences: and installed Teensy: and I can see all teensy borads when I'm selecting one: the problem is that my PC simply doesnt connect...
    • 1713590582829.png
    • 1713590621854.png
    • 1713590688122.png
    • 1713590700461.png
    • 1713590807746.png
  • J
    Correct me if I'm wrong but the Uno uses 5V? Do not connect 5V signals to the Teensy! It can only handle 3.3V and will be permanently damaged.
  • S
    Then I found this. Does it mean that 8K cannot be used, or that I am missing some operations?
    • 擷取.JPG
  • S
    我參考使用 I2S_modification(fsamps[fr],32) 和 SGTL5000_modification(fr) 的範例,但仍無法變更取樣率。 fr=0
    • 擷取.JPG
  • A
    Alright this is my first post on this forum. I'll try to provide sufficient details but have mercy. So I am trying to make an Arduino UNO (master) and a Teensy 4.1 (slave) communicate via SPI. More specifically, the UNO sends the Teensy a byte...
    • IMG_1559.jpg
    • IMG_1560.jpg
    • IMG_1561.jpg
    • IMG_1564.jpg
    • IMG_1565.jpg
  • S
    Hello, I am trying to communicate with a DFMiniPlayer using a Teensy4.0. I am powering the teensy with a 7805 regulator. However, when powering with the external regulator I just get a high pitched noise coming out of the speaker, with no music...
    • DFMiniPlayerSchematic.png
  • P
    got a real dx7 in the meantime, however blasphemously just using it as a MIDI input device :_)
  • M
    Over the last year, I developed a universal DAQ system to capture data from any I2C, SPI, RS232, analog or whatever-protocol sensor. It allows simultaneous and synchronous data capturing of up to eight sensors (or even more - see description) and...
    • RTMC_2.jpg
  • P
    Thanks so much for your quick reply. Hopefully i have some time next week to look deeper into it. It still surprises me that so few? users seem to have any interest in this topic, even it is the only way to produce pitched samples on the teensy -...
  • TomChiron
    TomChiron replied to the thread Arcade Buttons with WS2812.
    40 LEDs times 30µs means around 1.2ms blocked time for the LED update. However OctoWS2811 or WS2812serial are great options with non-blocking functionality.
  • h4yn0nnym0u5e
    I've changed nothing since post #100, so https://github.com/h4yn0nnym0u5e/teensy-variable-playback/tree/feature/set-start-point is the most recent (October 2023). Best? Who knows? It seems to take months to get any feedback on changes, and even...
  • TomChiron
    Thank you so much for this article! I am still using FastLED with OctoWS2811 this way and I am super grateful and happy about this guidance. I simply don't know or didn't find other ways in the past. I am glad that everything is working...
  • F
    Confirm, the main reason is to prevent possible back flow of current into your PC. Or the same into whatever power supply is connected to Teensy, if that power supply is turned off while the PC gets connected. Indeed the risk in practice is...
  • R
    Rezo reacted to Dogbone06's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    So I decided to make a facelift, adding SDCARD and USB-PD which supports the PD protocol up to 12V. There are pads to solder if you just want to use the second port as a pass through with 5V. Meaning, it will deliver the same 5V coming into the...
  • R
    Rezo reacted to mjs513's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    Wow you been busy!!! Nice job
  • R
    Rezo reacted to mjs513's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    One question did you bring out the csi pins?
  • R
    Rezo reacted to Dogbone06's post in the thread Call to arms | Teensy + SDRAM = true with Like Like.
    I did not bring out any special ports. All that was done was SDCARD and USB-PD. But ofc we can keep going and make a gen5 that has more stuff. But it needs coordinating, Rezo and KurtE together could make a full pin mapping, that would be ideal...
  • h4yn0nnym0u5e
    OK, pulled all three files (source, recording-1, and recording-2) in Audacity. Reviewed each in detail, recording-1 was 1 one-hundredth of a second longer than the original wav file but the extra was "dead air" so apparently Audacity ignored that...
  • h4yn0nnym0u5e
    That looks like the equal and opposite problem … ending a recording and tidying up takes a few milliseconds, so the other recording has (by the look of it) time to get a couple of buffers recorded before you stop it. I may not have tested it, but...
Back
Top