Search results

  1. F

    Serial Monitor Problem

    You might check the thread 'Arduino-1.0.3 + teensyduino problems' for a report on my more recent experiences. Right now, I'm able to connect to /dev/ACM0 using minicom. I haven't tried gkterm or screen. Code will upload and automatic reboot works even though /dev/ttyACM0 does not show up on the...
  2. F

    Arduino-1.0.3 + teensyduino problems

    I can work with this. frank
  3. F

    Arduino-1.0.3 + teensyduino problems

    I have determined that my program does load and run on Teensy3 (using minicom connected to /dev/ttyACM0). However, since Arduino/teensyduino does not recognise /dev/ttyACM0, I cannot connect with the serial monitor. frank
  4. F

    Arduino-1.0.3 + teensyduino problems

    I did a poor job explaining problem #2. Here's the code that seems to have caused trouble and the compiler's response. #define WR PD2 #define RD PD1 void setup(void) { Serial.begin(9600); PORTD |= (1<<WR); // WR hi (active lo) <- compiler complained at this...
  5. F

    Arduino-1.0.3 + teensyduino problems

    I've had significant problems with the new software, running either on a Dell Latitude D400 using Ubuntu (kernel 2.6.38) or 12 year old Micron, also running Ubuntu. I'm using the latest versions of both the 32 bit Arduino software and teensyduino.32. 1. I can compile and load blink on both...
  6. F

    Serial Monitor Problem

    System: Dell Latitude 400 Software: Linux version 2.6.38-16-generic (buildd@panlong) (gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4) ) #67-Ubuntu SMP Thu Sep 6 18:00:43 UTC 2012. Using arduino-1.0.3-linux32.tgz and teensyduino.32bit. Have installed the udev rules. The operating system reports...
  7. F

    ARM Library

    Is there any documentation on functions supported by the ARM compiler similar to that available for AVR-LIBC? I'm looking for information specific to implementing short time delays - a few clock cycles.
Back
Top