pretty up

master
neilh 2015-09-19 15:41:14 -07:00
rodzic a43b08f895
commit e88859c2e6
1 zmienionych plików z 19 dodań i 13 usunięć

@ -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