summaryrefslogtreecommitdiffstatshomepage
path: root/cc3200/application.lds
Commit message (Collapse)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
| | | | | There were several different spellings of MicroPython present in comments, when there should be only one.
* cc3200: Fix "debug" build.danicampora2016-02-21
|
* cc3200: Increment interrupt stack size from 2K to 3K.Daniel Campora2015-07-07
|
* cc3200: Add Timer module. Supports free running, PWM and capture modes.Daniel Campora2015-05-17
|
* cc3200: Increase main stack size to 2K.Daniel Campora2015-03-26
| | | | | | Increasing it from 1K to 2K gives more freedom to the callback handlers, before this, simply nesting a function call into a printf would cause a stack overflow.
* cc3200: Clean up linker scripts and startup file.danicampora2015-03-14
|
* cc3200: Place functions only used while booting in a special section.danicampora2015-03-11
| | | | | | | | | Such functions are never used after MicroPython has started, and they remain in RAM wasting space. Now they are placed in a special section named "boot" which sits just before the heap, allowing us to extend the effective heap area up to the new boot section. Right now, this gives us back ~1K, but in the future, more functions might end up in there as well.
* cc3200: Add SD module and disable SD card support for the LAUNCHXL.danicampora2015-02-21
|
* cc3200: Disable FreeRTOS asserts. Optimize more files if BTYPE=debug.danicampora2015-02-20
|
* cc3200: Add cc3200 port of MicroPython.danicampora2015-02-06
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.