Search results

  1. R

    Teensy 4.0: SD card problems/errors

    you cant treat a c character array like a c++ String object. #define MAX_NAME_LEN 32 #define MAX_DATA_LEN 32 char filename[MAX_NAME_LEN]; char dataString[MAX_DATA_LEN]; dataString = ""; //Line of Error dataString += String("1;2;0;"); dataString += String(micros()); its...
  2. R

    T3.5 EEprom writes and Interrupts.

    Sorry if this is documented elsewhere, I did my best to search for it. I have a system running on a 3.5 that keeps a double float in memory , incrementing constantly - I wish to make this robust against power failures but also not abuse the EEProm too much. The idea was a fat enough capacitor...
  3. R

    FreeRTOS Suggestions / Pitfalls for Teensy-LC?

    you can do scheduled timer events and watchdog from teensy arduino, RTOS is only required if you want a more complex "multi threaded" setup. https://www.pjrc.com/teensy/td_timing_IntervalTimer.html https://github.com/adafruit/Adafruit_SleepyDog
  4. R

    How to connect Teensy 3.2 with Rx TGY-IA6C for flight simulator

    the picture on the unit says 4 ->6.5 volts, why use the 3.3 instead of the 5 vin ?
  5. R

    How to connect Teensy 3.2 with Rx TGY-IA6C for flight simulator

    unfortunately the information is trapped inside that HEX file. you would need either the source code or some information from the Author to know which pins he used for his code.
  6. R

    How to connect Teensy 3.2 with Rx TGY-IA6C for flight simulator

    i was curious, so looking at the spec for the receiver it says Output data: PPM, i.BUS, S.BUS i would search for "arduino ppm remote control" or the other keywords "arduino ibus remote control" and look for some clues on the protocols. the actual pin choices will be made after you have worked...
  7. R

    Uploading "Teensyduino" hex file to a raw Kinetis microcontroller

    you can steal the temporary hex file from the teensyuploader popup before it gets cleaned up. when it has built and uploaded the popup is still around, goto the file menu and click open hex file. then copy and paste the hex to somewhere safe.
  8. R

    Compiling Teensy Sketches with VisualCode (Win10)

    illiterate at javascript is a feature, not a bug. im avoiding loading up VSCode with too many extensions - command line tools with instant access via the builtin terminal is the trick, i dont want to slow down the startup speed i love :)
  9. R

    Compiling Teensy Sketches with VisualCode (Win10)

    If you dont mind, Ill steal the approach from Board2Make and make a command line python tool out of it :)
  10. R

    Arduino CLI And IDE now Released - Teensy Supported!

    thankyou very much for providing the feedback. hopefully they will make this happen.
  11. R

    Arduino CLI And IDE now Released - Teensy Supported!

    thanks for the detail. does this mean nagging them into adding a new "post install hook" to the format ?
  12. R

    Arduino CLI And IDE now Released - Teensy Supported!

    the rules for https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.6.x-package_index.json-format-specification seem somewhat easy enough. the only trick would be fudging the teensyduino install package into that format
  13. R

    Arduino CLI And IDE now Released - Teensy Supported!

    nope this one also only detects the boards in the package manager system and ignores the ones manually installed in /hardware i wonder how much work it is to make a layer for teensyduino that obeys that package.json system. this would appear to fix both the arduino-cli and the visual code plugin.
  14. R

    Arduino CLI And IDE now Released - Teensy Supported!

    :) ill give it a go. ideally, the command line tool would replace the need for the whole dance with that Java IDE and its unfortunate ui. im not ready to give up on the dream just yet!
  15. R

    Arduino CLI And IDE now Released - Teensy Supported!

    https://code.visualstudio.com/ its super fast on startup and it works off a completely agnostic "open folder" paradigm which defies project file madness. an open source effort from microsoft that runs seperately to visual studio, the linux version is identical to the windows one which makes...
  16. R

    Arduino CLI And IDE now Released - Teensy Supported!

    thanks @defragster but alas ive tried all that. Visual Micro is for the big fat version of visual studio, not the new lean mean visual code. it was also quite clumsy from memory, i didnt want to persist with it or visual studio. the arduino ide is just terrible to me - i dislike the menu...
  17. R

    Arduino CLI And IDE now Released - Teensy Supported!

    Id love to abandon the Arduino IDE and move to visual code which is a far superior editor, if work is required to help teensy get enabled Ill tentatively put my hand up. having just tried it out - it appears to require the new http://package.json support instead of the manual installation into...
  18. R

    Teensyduino 1.31 Beta #1 Available

    brilliant, thank you very much - installing now.
  19. R

    Teensyduino 1.31 Beta #1 Available

    just received 3.5 & 3.6 (yay) - installed the 1.31 beta on arduino 1.6.11, did some quick tests on existing project code and discovered the Snooze library has errors, so mentioning it here incase its not known. the builtin examples will trigger it, eg: pushbutton_pullup_sleep.ino. the tailend...
Back
Top