PaulS
Reaction score
72

Latest activity Postings About

    • PaulS
      Well, you may want to elaborate on what you exactly want. Are you looking into connecting the VU meters to your DAW in order the show volumes of different tracks? Or is it a completely different application without using a DAW at all? When it's...
    • PaulS
      The latter you can easily check by adding Serial.begin(9600); to void setup() like so: void setup() { Serial.begin(9600); usbMIDI.setHandleControlChange(onCC); < stuff deleted > } and by adding some Serial.print()s to void onCC(byte...
      • 1743261464172.png
    • PaulS
      Is this the project you are referring to: https://www.bluecataudio.com/Blog/tip-of-the-day/building-a-midi-controlled-analog-vu-meter/ ? What exactly does not work and what did you try? Can you share your code for review? Are you sure the DAW...
    • PaulS
      PaulS reacted to jmarsh's post in the thread Teensy 4.1 USB Host cable with Like Like.
      ^^ This AI generated spambot is wrong, the 4-pin cable DOES have a 5V line, it's only missing an extra ground line which doesn't matter.
    • PaulS
      PaulS reacted to TomChiron's post in the thread Teensy 4.1 USB Host cable with Like Like.
      Doesn't hurt to get the right cable, yes. But where do you see that the 4pin connector is missing the 5V pin? There are two GND pins in the 5 pin connector where you can omitt one. The 4pin connector should also work.
    • PaulS
      PaulS replied to the thread Teensy 4.0 Not flashing.
      You may want to have a look at USBtreeview. This is the tool I use a lot for that purpose. Paul
    • PaulS
      PaulS replied to the thread Problem with PCM5102A.
      Happy to hear it's working fine now. Just connect SCK to GND at each DAC board. I have always used PCM5102A's in that configuration without any problems. Distributing the 11.29 MHz MCK signal from Teensy to all 8 DAC boards may introduce other...
    • PaulS
      PaulS replied to the thread Problem with PCM5102A.
      Please do so! Otherwise the Teensy signals are floating with respect to the other circuitry. Paul
    • PaulS
      PaulS replied to the thread Problem with PCM5102A.
      Thanks for the photo and your code. 1. please increase the number of audio buffers to 30 like so: void setup() { pinMode(LED_BUILTIN, OUTPUT); AudioMemory(30); } 2. is the Teensy 4.1 GND connected to the GND of the rest of your circuit...
    • PaulS
      PaulS reacted to PaulStoffregen's post in the thread SparkFun To Manufacture Teensy with Like Like.
      Yes, that's my hope... especially coding time! I'm not ready to think about any new products until Sparkfun has been shipping Teensy 4.0 and Teensy 4.1 for a while. We've been pouring a lot of work into this transition for the last few months...
    • PaulS
      PaulS replied to the thread Problem with PCM5102A.
      Could you show us a photo of your setup and wiring? These I2S signals are pretty fast; BCLK is running at 2.824 MHz. So far you did not share your code for us to look at - can you show a minimal sketch which generates the bad audio? Paul
    • PaulS
      PaulS reacted to Paul's post in the thread SparkFun To Manufacture Teensy with Like Like.
      We are excited to announce the expansion of our partnership with SparkFun Electronics to include the manufacturing of all Teensy products. Teensy 4.0, Teensy 4.1 and related accessories will now be manufactured by SparkFun in Colorado, USA...
    • PaulS
      If you're using CAN3 you should initialize the FlexCAN Bus object like so: FlexCAN_T4<CAN3, RX_SIZE_256, TX_SIZE_16> canBus; // Teensy's built-in CAN3 Paul
    • PaulS
      OK, thanks for the clarification. Perhaps the elapsedMillis timers[numPedals]; function is colliding with the static elapsedMillis displayUpdateTimer; function? What happens if you set if (displayUpdateTimer > 50) to if (displayUpdateTimer >...
    • PaulS
      Can you explain what exactly you mean by "intermittency"? Have the displays difficulty with updating? Or..? Paul
    • PaulS
      PaulS replied to the thread output single frecuency CS4344.
      Great! If I remember correctly, some people on this forum have tried that but I'm not sure they succeeded. Paul
    • PaulS
      Did you also copy boards.txt? If I understand the instructions correctly you need to copy the cores folder from Github over your existing cores folder and the boards.txt file. Paul
      • 1739905750650.png
    • PaulS
      PaulS replied to the thread output single frecuency CS4344.
      Hi Enrique, perhaps this thread will help. Paul
    • PaulS
      Did you install this extra library for Teensy to add an additional USB mode ("XInput"): https://github.com/dmadison/ArduinoXInput_Teensy ? Paul
    • PaulS
      PaulS replied to the thread output single frecuency CS4344.
      You need to give it some AudioMemory to work with, like so: void setup() { AudioMemory(8); sine1.frequency(1000); sine1.amplitude(1); } Paul
    • PaulS
      PaulS replied to the thread Did I fry my Teensy 4.1.
      Is the 3V3 present when you power the Teensy over USB only? Paul
    • PaulS
      PaulS replied to the thread CAN communication.
      That's unusual but seems possible. See this application note. Paul
      • 1739701237620.png
    • PaulS
      PaulS replied to the thread Wake On USB.
      It looks like not being possible. Uploaded the small program below to a Teensy 4.0: #include <Bounce.h> Bounce button0 = Bounce(0, 10); void setup() { pinMode(0, INPUT_PULLUP); } void loop() { button0.update(); if (button0.fallingEdge())...
      • 1739029173103.png
      • 1739029183154.png
      • 1739029220437.png
    • PaulS
      PaulS replied to the thread Dead Teensy 4.1.
      That sounds to me there is a short on the 3V3 line somewhere on the board. Did you visually check for shorts, e.g. solder blobs, metal particles, flux residue, etc? I think the regulator is still operating - in current-limit mode though. Paul
    • PaulS
      PaulS replied to the thread Dead Teensy 4.1.
      Did you reconnect the PCB pads again for testing the Teensy on USB power? Paul
  • Loading…
  • Loading…
Back
Top