summaryrefslogtreecommitdiffstatshomepage
path: root/ports/esp8266/boards/GENERIC_512K/mpconfigboard.h
Commit message (Collapse)AuthorAge
* esp8266: Add board variant support.Jim Mussared2023-08-23
| | | | | | | | | | | | | | | | | | | | | This merges the existing GENERIC, GENERIC_1M, and GENERIC_512k boards into variants of the new ESP8266_GENERIC board (renamed from GENERIC so as not to clash with other ports). Also moves the generation of the "OTA" variant (previously generated by autobuild/build-esp8266-latest.sh) into the variant. Following the convention established for the WEACTSTUDIO rp2 board, the names of the variants are FLASH_1M and FLASH_512K (but rename the .ld files to use MiB and kiB). Updates autobuild to build esp8266 firmware the same way as other ports. This requires renaming the output from firmware-combined.bin to just firmware.bin. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* extmod/asyncio: Rename uasyncio to asyncio.Jim Mussared2023-06-19
| | | | | | | | | | | | | | The asyncio module now has much better CPython compatibility and deserves to be just called "asyncio". This will avoid people having to write `from uasyncio import asyncio`. Renames all files, and updates port manifests to use the new path. Also renames the built-in _uasyncio to _asyncio. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* all: Rename UMODULE to MODULE in preprocessor/Makefile vars.Jim Mussared2023-06-08
| | | | | | This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* esp8266/boards: Enable reverse-special-methods on GENERIC board.Damien George2022-07-08
| | | | | | | | It increases the firmware size by 292 bytes. Addresses issue #5897. Signed-off-by: Damien George <damien@micropython.org>
* esp8266/mpconfigport: Switch to ROM feature level configuration.Damien George2022-06-23
| | | | | | This is a no-op in terms of board configuration. Signed-off-by: Damien George <damien@micropython.org>
* esp8266: Add per-board configs, following other ports.Mike Causer2019-10-10
The specific board can be selected with the BOARD makefile variable. This defaults (if not specified) to BOARD=GENERIC, which is the original default firmware build. For the 512k target use BOARD=GENERIC_512K.