Search results

  1. I

    Serial Issue with Teensy

    hm. seems hardware dependent then. first time upload just worked, the second time i uploaded it missed numbers: is there something i can try? some changes in the code to get some details about the problem?
  2. I

    Teensyduino 1.29 Beta #4 Available

    still serial-problems with osx el capitan. https://forum.pjrc.com/threads/34196-Serial-Issue-with-Teensy?highlight=capitan sometimes it works, sometimes it does not.
  3. I

    Serial Issue with Teensy

    here on 10.11.5 (MacBook Pro (Retina, Mid 2012)) with a teensy-LC i experience this: (Arduino 1.6.9 and Teensduino 1.29-beta3) - uploading the sketch after plugging the teensy to usb: serial output dropping bytes - uploading the sketch again usually produces smooth serial output. probably...
  4. I

    32bit toolchain on osx 10.6.8

    thanks for the quick reply. i think i give up on that.
  5. I

    32bit toolchain on osx 10.6.8

    hello. i would like to use teensyduino on an older macbook which is 32bit. the system is 10.6.8 arduino fails compiling for teensy because the toolchain is 64bit only. is there a chance to get a universal binary toolchain? (trying to compile the toolchain failed for me...) thanks for help inx
  6. I

    problems with teensy3.1 + serial on OSX Yosemite (10.10.5)

    thanks for making me look for it again :) it works now! needed to reprogram with auto-mode off like explained in post #12 in this thread: https://forum.pjrc.com/threads/31043-Teensyduino-1-26-Beta-1-Available?highlight=capitan
  7. I

    problems with teensy3.1 + serial on OSX Yosemite (10.10.5)

    i upgraded to OSX El Capitan (10.11.3) facing the exactly same problem thanks for any help!
  8. I

    problems with teensy3.1 + serial on OSX Yosemite (10.10.5)

    Hi. i encounter the following problem with a teensy3.1, teensyduino1.27 on a macbook-pro with Yosemite OSX 10.10.5. running this code: int c = 0; void setup() { Serial.begin(9600); } void loop() { Serial.print("count: "); Serial.println(c++); delay(200); } output: count: 68...
Back
Top