From e88859c2e6832cd2d61dd266ff7acf731bb2af7e Mon Sep 17 00:00:00 2001 From: neilh Date: Sat, 19 Sep 2015 15:41:14 -0700 Subject: [PATCH] pretty up --- Getting-Started.md | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index 5ee0bcc..14aff12 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -142,25 +142,31 @@ At that point, you will have a functioning micropython executable, which may be ### ARM-based microcontrollers On a Ubuntu 12.04LTS this worked -sudo apt-get remove binutils-arm-none-eabi gcc-arm-none-eabi -sudo add-apt-repository ppa:terry.guo/gcc-arm-embedded -sudo apt-get update -sudo apt-get install gcc-arm-none-eabi +> sudo apt-get remove binutils-arm-none-eabi gcc-arm-none-eabi + +> sudo add-apt-repository ppa:terry.guo/gcc-arm-embedded + +> sudo apt-get update +> sudo apt-get install gcc-arm-none-eabi (as of 2015Sept19 pulled in amd64 4.9.3.2015q2-1trusty1) If needed to remove -sudo apt-get remove gcc-arm-none-eabi +> sudo apt-get remove gcc-arm-none-eabi Assuming the micropython has been installed in directory -cd stmhal -make +> cd stmhal +> make +(completes but didn't test) + +> cd ../teensy +> sudo apt-get install realpath +> make + +(completes but didn't test) -cd ../teensy -sudo apt-get install realpath -make -(completes) See Running Scripts in https://github.com/micropython/micropython/wiki/Board-Teensy3.1) + Discussion on design https://forum.pjrc.com/threads/24794-MicroPython-for-Teensy-3-1/) -cd ../minimal -make - FAILS +> cd ../minimal +> make - FAILS