Search results

  1. G

    A lot of confusion with the touch pins on the Teensy boards

    Hello. I think there is some confusion around the web regarding the touch pins on the teensy boards and how to use them. As of now there's (to my knowledge) only a few places to get a correct understanding of how to use the touch pins: The pin out cards that comes with the teensy, and I would...
  2. G

    Is millis() affected by long ISRs (Interrupts) on Teensy?

    Thanks for that very clarifying answer! The ARM is sooo cool and powerful! Having it on this cheap and small board is a delight. Good work Paul! Am I understanding correctly that all the timing related functions (elapsedMillis, elapsedMicros, micros(), millis(), delay(), delayMicroseconds())...
  3. G

    Is millis() affected by long ISRs (Interrupts) on Teensy?

    Hello everybody! I've been doing some googling and it seems to me that the value returned by millis() and micros() can be affected by the time spent inside interrupt service routines (ISRs). That is, if the timer overflows two times while running the ISR, the interrupt queue gets full and timer...
  4. G

    Does anybody get Teensy 3 working with NRF24L01+?

    Serial.printf Latest Teensy libraries have printf available. Call it with Serial.printf(blablabla) So. Using the maniacbug RF24 library is as easy as doing a find & replace of printf to Serial.printf Peace!
  5. G

    My Kingdom for printf()

    Serial.printf Old thread. But I think it might be good to write this here for other forum visitors. As of now (I don't know how long it's been available) printf is included in the Print class for Teensy 3. This means that one can access printf by calling: Serial.printf(blablabla) when compiling...
  6. G

    How to compile in Sublime Text 2 using makefile. Teensy 3

    Perfect! Works like a charm. Thanks!
  7. G

    How to compile in Sublime Text 2 using makefile. Teensy 3

    Hello! I've got teensyduino up and running without problem with my Teensy 3. Since I've become very fond of the editor sublime text 2 i'd like to compile outside teensyduino using a makefile. Has anyone tried this and made it work. I'm struggling with the makefile and am a bit lost actually...
Back
Top