summaryrefslogtreecommitdiff
path: root/ports/esp8266/Makefile
AgeCommit message (Collapse)Author
2019-10-13remove ports/esp8266Dan Halbert
2019-02-15WIP: atmel-samd trinket build worksDan Halbert
2019-01-22Merge remote-tracking branch 'adafruit/master' into HEADScott Shawcroft
2019-01-22tell people that esp8266 is no longer supportedLars Kellogg-Stedman
Closes #1483
2019-01-13Fresh combined checkin of _pixelbuf library.Roy Hooper
2018-12-06Use the stub for ESP8266 as well.Scott Shawcroft
2018-11-30Add support for adding release info into adafruit/circuitpython-orgScott Shawcroft
This also changes the build script to python with better output.
2018-11-08Move atmel-samd to tinyusb and support nRF flash.Scott Shawcroft
This started while adding USB MIDI support (and descriptor support is in this change.) When seeing that I'd have to implement the MIDI class logic twice, once for atmel-samd and once for nrf, I decided to refactor the USB stack so its shared across ports. This has led to a number of changes that remove items from the ports folder and move them into supervisor. Furthermore, we had external SPI flash support for nrf pending so I factored out the connection between the usb stack and the flash API as well. This PR also includes the QSPI support for nRF.
2018-08-09Initial SAMR board revision.Scott Shawcroft
2018-08-07Support internationalisation.Scott Shawcroft
2018-07-23WIP: complete manual inspection of all significant changesDan Halbert
2018-07-11WIP: after merge; before testingDan Halbert
2018-05-02allow esptool.py invocation to be set via make varsLars Kellogg-Stedman
This commit replaces the literal calls to `esptool.py` with the `$(ESPTOOL)` Makefile variable. This allows one to set the esptool invocation on the Make command line: make ESPTOOL="python2 $(which esptool.py)" (or via the environment, an include file, etc) Closes #793
2018-04-09esp8266: Disable "strict aliasing" in compiler like in atmel-samdJeff Epler
This caused a fatal compiler diagnostic after #750. This compiler flag is already specified in the atmel-samd builds, so it makes sense to do it here for the same reasons.
2018-03-10drivers/bus: Pull out software SPI implementation to dedicated driver.Damien George
This patch takes the software SPI implementation from extmod/machine_spi.c and moves it to a dedicated file in drivers/bus/softspi.c. This allows the SPI driver to be used independently of the uPy runtime, making it a more general component.
2018-02-27Merge remote-tracking branch 'adafruit/2.x' into merge_2xScott Shawcroft
2018-01-02merge from 2.2.0 + fix up board defsDan Halbert
2017-12-22esp8266/Makefile: Remove commented-out unused lines.Damien George
These were copied from the stm32 port (then stmhal) at the very beginning of this port, with the anticipation that the esp8266 port would have board definition files with a list of valid pins and their names. But that has not been implemented and likely won't be, so remove the corresponding lines from the Makefile.
2017-10-24Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_mergeScott Shawcroft
This is prep for merging in the NRF5 pull request.
2017-09-10esp8266: Set DEFPSIZE=1024, MINCACHE=3 for "btree" module.Paul Sokolovsky
Defaults of 4096 and 5 respectively are too high to esp8266, causing out of memory with a database beyond couple of pages.
2017-09-10esp8266: Rename axtls_helpers.c to posix_helpers.c.Paul Sokolovsky
As it's used by BerkeleyDB, etc.
2017-09-06all: Update Makefiles and others to build with new ports/ dir layout.Damien George
Also renames "stmhal" to "stm32" in documentation and everywhere else.
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.