Search results

  1. A

    Teensy Loader Win10 binary and VS2019 Project

    I managed to build teensy_loader_cli using VS2019, thanks for the above guidance. I am wondering, is there a version that can do a Teensy4.1 soft_reboot on Win32? Thank you
  2. A

    SD wave playback stutters on T4.1

    I have a biometric sketch running on a Teensy 4.1. I am experiencing intermittent audio stutters in wave file playback from the onboard SD card. Obviously, I should make a simpler sketch to isolate the problem, share that, and perhaps someone could try duplicating the issue. I am working on...
  3. A

    Teensy 4.1 Based CNC Controller

    Awesome. Just ordered one. Thanks
  4. A

    Teensy 4.1 with audio shield questions

    For starters, there needs to be a line in setup() to allocate memory for the Audio Library. Something like: AudioMemory(12); Try one of the examples, e.g. Pass Through Stereo, to see if the shield is working. hope this helps
  5. A

    Knob encoder velocity multiplier qestion

    You're halfway there, since you are already saving the previous encoder value as Encoder1Lag. Take the difference of Encoder1Value and Encoder1Lag. That delta will give you a velocity estimate; you might need to slow down polling to get better resolution. Then, if you want behringer-like steps...
  6. A

    Floating-Point Audio Library Extension

    Referencing back to the original topic of this thread... just wanted to share that most of the floating point audio library extension is working for me on a Teensy 4.0. I just removed the hardware-specific parts, e.g. I2C I/O. Since the ADC's and DAC's I'm using are 16 bit, I just use the...
  7. A

    Time for a new Audiolibrary

    A 48k version of the audio library would be delightful. No SRC please. Back to poking around to see how far above my paygrade is 48k USB on a T4.0.
  8. A

    Teensy 4.0 I2S slave problem

    Thanks for the tip, and so far so good. I have one Teensy 4.0 running as I2S master, generating test signals. I2S pins jumpered to a 2nd T4, running as an I2S slave and routing the audio to USB. No audible distortion, listening to the USB connection on my laptop. Details to follow. On to trying...
  9. A

    Teensy 4.0 I2S slave problem

    I am planning to test Teensy 4.0 as i2s slave tomorrow. To a second T4 master and also to an ADAU1701. I will post results and I welcome advice.
  10. A

    Cheap ICS-52000 Microphone Array Board for TDM evaluation

    Since last post I received four new NW-AUD-ICS52000 boards, and tried them with T3.5, 3.6, and two other TDM sinks: a miniDSP MCHStreamer and an ADAU1445 eval board. Same symptioms all around. I failed trying to remove and replace the MEMS parts with new, so I designed a small two-element board...
  11. A

    Cheap ICS-52000 Microphone Array Board for TDM evaluation

    Reviving this old thread, to ask if anyone ever has any success with the TDM MEMS mic eval board mentioned in the OP (https://www.notwired.co/products/detail/nwaudics52000-notwired-co/605574/). I have four of them as well as a 16-channel ICS-52000 array board from...
  12. A

    Teensy 4.0 Breakout Kit

    I am very keen to help test this board. Have two T4's and I don't mind paying costs... I'm on a tight schedule to try upgrading to T4 in an active project and this board looks great. Let me know and thanks!
  13. A

    Teensy as I2S Slave-- frame size question.

    Yes, I am asking if the SCLK/BCLK ratio change was made for I2S slave mode as well as I2S master mode in the current release. Sorry if that was not a clear and simple question to you, @WMXZ. If it wasn't addressed, or there are still other known issues using I2S slave mode , it would be nice...
  14. A

    Teensy as I2S Slave-- frame size question.

    Thank you Paul, for switching to 64-bit frame size for I2S master mode. I tried and failed to get that working a few years back. Does this change also apply to I2S slave mode? That would be nice.
  15. A

    audio lib / slave mode / codec (suggestions ?)

    Glancing back at the start of this thread that I totally co-opted, I want to mention that helping test and debug Teensy in I2S slave mode is also something I am more than happy to do. For a future project I'll want an external precision audio clock as master.
  16. A

    audio lib / slave mode / codec (suggestions ?)

    Hi Paul, Thanks for your reply. I know you're busy with the new board, and that's pretty exciting! Yes I have a dual-channel 100Mhz scope (Tektronix, I'm from Beaverton after all) and have been experimenting with various registers, primarily in output_i2s.cpp. If I change the bit clock...
  17. A

    audio lib / slave mode / codec (suggestions ?)

    IS2 BCLK multiplier Digging a little deeper, looks like I need to change bits 7-0 of I2s0_TCR2. I'm using a Teensy 3.2 and understand that a generalised solution would be more involved, however I am on a deadline to do a proof of concept. Any pointers would be most appreciated. Thanks!
  18. A

    audio lib / slave mode / codec (suggestions ?)

    I2S BCLK multiplier How tough? The BC127 bluetooth module also requires at least a 64x BCLK to work in slave mode. Seems like PTC3 is involved, but I haven't yet found where that is configured and would appreciate knowing if I am barking up the right tree.
Back
Top