diff options
author | Dan Peirce <peirce.dan@gmail.com> | 2014-08-12 00:05:35 -0700 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-08-16 11:54:36 +0100 |
commit | 6009309c336e7aedad1ba900e9a1ff89ed3dc75a (patch) | |
tree | 98622a996d04558834da870ea91cb8dcc2aef120 /teensy | |
parent | e6c0dff9671c493e9a13a22a1b8902dee88da064 (diff) | |
download | micropython-6009309c336e7aedad1ba900e9a1ff89ed3dc75a.tar.gz micropython-6009309c336e7aedad1ba900e9a1ff89ed3dc75a.zip |
modified: teensy/README.md
Updated teensy/README.md to reflect change in build process (teensyduino is no
longer required for build).
Diffstat (limited to 'teensy')
-rw-r--r-- | teensy/README.md | 46 |
1 files changed, 28 insertions, 18 deletions
diff --git a/teensy/README.md b/teensy/README.md index 7c95f1c9d5..6af7ede212 100644 --- a/teensy/README.md +++ b/teensy/README.md @@ -1,18 +1,28 @@ -Build Instructions for Teensy 3.1 - -This assumes that you have TeensyDuino installed and set the ARDUINO environment -variable pointing to the where Arduino with TeensyDuino is installed. - -``` -cd teensy -ARDUINO=~/arduino-1.0.5 make -``` - -To upload micropython to the Teensy 3.1. - -Press the Program button on the Teensy 3.1 -``` -make upload -``` - -Currently, the python prompt is through the USB serial interface. +# Build Instructions for Teensy 3.1
+
+Currently the Teensy 3.1 port of Micro Python builds under Linux and not under Windows.
+
+The tool chain required for the build can be found at <https://launchpad.net/gcc-arm-embedded>.
+
+Downlaod the current Linux *.tar.bz2 file. Instructions regarding unpacking the file and moving it to the correct location
+as well as adding the extracted folders to the enviroment varabe can be found at
+<http://eliaselectronics.com/stm32f4-tutorials/setting-up-the-stm32f4-arm-development-toolchain/>
+
+## Previous Instructions Shown Below (no longer valid)
+
+This assumes that you have TeensyDuino installed and set the ARDUINO environment
+variable pointing to the where Arduino with TeensyDuino is installed.
+
+```
+cd teensy
+ARDUINO=~/arduino-1.0.5 make
+```
+
+To upload micropython to the Teensy 3.1.
+
+Press the Program button on the Teensy 3.1
+```
+make upload
+```
+
+Currently, the python prompt is through the USB serial interface.
|