diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-11-06 01:30:19 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-11-06 01:30:19 +0300 |
commit | 8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df (patch) | |
tree | 5b20cca6c25356f0d812637ef2a0bdebd34c32c6 /esp8266/modutime.c | |
parent | 3ccdbf792cb04fb5561dae52839b51a854f75808 (diff) | |
download | micropython-8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df.tar.gz micropython-8bc3fc20feca9ebe9e9972aeb6b68a81d792c5df.zip |
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/modutime.c')
-rw-r--r-- | esp8266/modutime.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/esp8266/modutime.c b/esp8266/modutime.c index 1bd1c489d8..2adb6c563b 100644 --- a/esp8266/modutime.c +++ b/esp8266/modutime.c @@ -34,8 +34,7 @@ #include "py/runtime.h" #include "py/mphal.h" #include "py/smallint.h" -#include "modpyb.h" -#include "modpybrtc.h" +#include "modmachine.h" #include "timeutils.h" #include "user_interface.h" #include "extmod/utime_mphal.h" |