aboutsummaryrefslogtreecommitdiff
path: root/cc3200/Makefile
AgeCommit message (Collapse)Author
2017-09-06ports: Make new ports/ sub-directory and move all ports there.Damien George
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.
2017-08-11all: Make use of $(TOP) variable in Makefiles, instead of "..".Damien George
$(TOP) is defined in py/mkenv.mk and should be used to refer to the top level of this repository.
2017-03-23all/Makefile: Remove -ansi from GCC flags, its ignored anyway.Krzysztof Blazewicz
The -ansi flag is used for C dialect selection and it is equivalent to -std=c90. Because it goes right before -std=gnu99 it is ignored as for conflicting flags GCC always uses the last one.
2017-01-30cc3200: Convert to use new VFS sub-system and new ooFatFs library.Damien George
2016-12-29cc3200: Add targets to erase flash, deploy firmware using cc3200tool.Paul Sokolovsky
cc3200tool, https://github.com/ALLTERCO/cc3200tool is a (mostly, some binary blobs present) open-source, Linux-friendly tool to flash a cc3200 devices. It's an alternative to fully proprietary, Windows-only Uniflash from TI. The provided make targets are for erasing flash, flashing the uPy bootloader and firmware, and flashing vendor's WiFi firmware "servicepacks" (the latter needs to be downloaded from vendor side, a link is present inside Makefile).
2016-02-21cc3200: Fix "debug" build.danicampora
2015-06-18cc3200: Remove --specs=nano.specs linker flag.Daniel Campora
2015-05-28cc3200: Remove WIPY-SD variant, and make the WiPy the default board.Daniel Campora
2015-04-29cc3200: Remove unneeded -lgcc in Makefile.Daniel Campora
2015-04-28cc3200: Make telnet login procedure work with Tera Term.Matt Anderson
This is actually a workaround Ter Term's issue of not obeying to the telnet options that the server is sending. Therefore, we must buffer chars until either a '\r' or the max length of the username/password is received.
2015-02-28cc3200: Create separate release/debug build directoriesJohan Hendriks
2015-02-06cc3200: Add cc3200 port of MicroPython.danicampora
The port currently implements support for GPIO, RTC, ExtInt and the WiFi subsystem. A small file system is available in the serial flash. A bootloader which makes OTA updates possible, is also part of this initial implementation.