Forum Rule: Always post complete source code & details to reproduce any issue!

Search:

Type: Posts; User: Hacky

Search: Search took 0.00 seconds.

  1. Replies
    100
    Views
    51,568

    Thanks for the update, Paul. Did you have a...

    Thanks for the update, Paul. Did you have a chance to look why the PulsePlosition library coming with TD does not compile anymore with T4?
    (see also...
  2. Replies
    18
    Views
    8,528

    I was trying to use PulsePosition library with T4...

    I was trying to use PulsePosition library with T4 and got lots of compilation errors (urgent at least for me... :)). It was compiled using TD 1.48b1 but with TD 1.48b2, I got the same errors:


    ...
  3. Replies
    1
    Views
    1,253

    Teensy 4.0: Access to second LED?

    When Teensy 4.0 is going to be programmed through Teensyduino, you can see a little red LED flickering.

    Ist it possible to control this LED by my own code, like the other LED on pin 13?
  4. Replies
    109
    Views
    56,008

    I replaced the empty loop() of the benchmark with...

    I replaced the empty loop() of the benchmark with the following code to get the temperature printed once a second:


    long nextTime = millis() + 1000;

    void loop() {
    if (millis() > nextTime) {...
  5. Replies
    109
    Views
    56,008

    I also had this effect one time (last three lines...

    I also had this effect one time (last three lines missing) - but with Teensy 3.2 connected.

    A FastCRC benchmark comparison between Teensy 3.2 (with hardware CRC) and Teensy 4.0 (table based CRC)...
  6. Replies
    109
    Views
    56,008

    Thanks. After commenting out PIT_MCR = 0 in...

    Thanks. After commenting out PIT_MCR = 0 in startup.c it does not freeze anymore.
    Which side effects may it cause, when it is not set to 0?
  7. Replies
    109
    Views
    56,008

    Thank you Manitou. After replacing the FastCRC...

    Thank you Manitou. After replacing the FastCRC library in Teensyduino with the latest version from FrankBoesing, the code compiles.

    But when the library gets loaded and initialized, it freezes my...
  8. Replies
    109
    Views
    56,008

    Hi, does the Teensy 4.0 not support fast...

    Hi,

    does the Teensy 4.0 not support fast (hardware) CRC calculation like the Teensy 3.x?
    With Teensy 3.x I was using Frank Boesings FastCRC implementation (...
  9. Yes, slightly older, I was using version 1.39....

    Yes, slightly older, I was using version 1.39. Now, with 1.40 the yield() function in HX711 library does not lock the Teensy 3.2 anymore.
  10. For those Teensy users who overcome this thread...

    For those Teensy users who overcome this thread due to problems with the HX711 library, also this topic might be helpful:...
  11. Just to let you know that commenting the yield()...

    Just to let you know that commenting the yield() function at the beginning of the .cpp file also helped in my case. The difference to the problem of pynpyn was in my case that it locked out also my...
Results 1 to 11 of 11