diff options
| author | Paul Sokolovsky | 2016-11-06 01:30:19 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2016-11-06 01:30:19 +0300 |
| commit | 8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df (patch) | |
| tree | 5b20cca6c25356f0d812637ef2a0bdebd34c32c6 /esp8266/Makefile | |
| parent | 3ccdbf792cb04fb5561dae52839b51a854f75808 (diff) | |
esp8266: Rename "machine" module implementation to use contemporary naming.
Previously they used historical "pyb" affix causing confusion and
inconsistency (there's no "pyb" module in modern ports; but people
took esp8266 port as an example, and "pyb" naming kept proliferating,
while other people complained that source structure is not clear).
Diffstat (limited to 'esp8266/Makefile')
| -rw-r--r-- | esp8266/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 245f95b40..3fce1788c 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -78,19 +78,19 @@ SRC_C = \ espapa102.c \ intr.c \ modpyb.c \ - modpybpin.c \ - modpybpwm.c \ - modpybrtc.c \ - modpybadc.c \ - modpybuart.c \ - modmachinewdt.c \ - modpybspi.c \ - modpybhspi.c \ + modmachine.c \ + machine_pin.c \ + machine_pwm.c \ + machine_rtc.c \ + machine_adc.c \ + machine_uart.c \ + machine_wdt.c \ + machine_spi.c \ + machine_hspi.c \ modesp.c \ modnetwork.c \ modutime.c \ moduos.c \ - modmachine.c \ modonewire.c \ ets_alt_task.c \ fatfs_port.c \ |
