diff options
author | Daniel Campora <daniel@wipy.io> | 2015-06-11 09:26:36 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-06-11 09:26:36 +0200 |
commit | f28ed55aebe4ced1dc3e6a4016ecd7e3497110ce (patch) | |
tree | ca354860057f9be02552dd6775d997bb4f39c4f4 | |
parent | 0a903be7d0f2ccb5f9eccce0b7e8cf078dde3832 (diff) | |
download | micropython-f28ed55aebe4ced1dc3e6a4016ecd7e3497110ce.tar.gz micropython-f28ed55aebe4ced1dc3e6a4016ecd7e3497110ce.zip |
cc3200/README.md: Specify the board name in the build command.
-rw-r--r-- | cc3200/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cc3200/README.md b/cc3200/README.md index 578e1abcce..148bdf3368 100644 --- a/cc3200/README.md +++ b/cc3200/README.md @@ -1,6 +1,6 @@ # Build Instructions for the CC3200 -Currently the CC3200 port of Micro Python builds under Linux and OSX and not under Windows. +Currently the CC3200 port of Micro Python builds under Linux and OSX **but not under Windows**. The tool chain required for the build can be found at <https://launchpad.net/gcc-arm-embedded>. @@ -13,15 +13,15 @@ In order to debug the port specific code, optimizations need to be disabled on t port file (check the Makefile for specific details). You can use CCS from TI. Use the CC3200.ccxml file supplied with this distribution for the debuuger configuration. ```bash -make BTARGET=application BTYPE=debug +make BTARGET=application BTYPE=debug BOARD=LAUNCHXL ``` ## To build an image suitable to be flashed to the device: ```bash -make BTARGET=application BTYPE=release +make BTARGET=application BTYPE=release BOARD=LAUNCHXL ``` ## Building the bootloader ```bash -make BTARGET=bootloader BTYPE=release +make BTARGET=bootloader BTYPE=release BOARD=LAUNCHXL ``` ## Regarding old revisions of the CC3200-LAUNCHXL |