Sketch not loading onto teensy 3.1

Status
Not open for further replies.

A. Williams

Well-known member
So, I've been using teensy 2.0 boards for a while and just recently decided to try out the 3.1 board. I'm also using a different computer, so i had to re-install arduino. I installed arduino 1.0.5-r2 (the only 1.0.5 version I've seen available atm), wrote a simple led turn on sketch, compiled and attempted to boot it up but no luck. I've made sure to select teensy 3.1 from the menu, and i've tried running the overclocked as well as the 48mhz setting. Every time I compile, upload, and hit the reset key nothing happens. Also, the teensy loader does not run the loading bar. Is it possible that the version of Arduino 1.0.5-r2 is not compatible with teensy? (even though it says it is).

Here's an example of my code

void setup() {
pinMode(1,OUTPUT);}

void loop() {
digitalWrite(1,HIGH);}
 
Status
Not open for further replies.
Back
Top