diff options
author | Damien George <damien@micropython.org> | 2023-10-26 12:06:19 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-10-26 16:49:27 +1100 |
commit | d336c1b79b38ac4024c2342e67640400e1f81532 (patch) | |
tree | eebce99c47b71c65b2e2ae3d86a1d4ac701d7333 /ports/unix/modmachine.c | |
parent | 90023b4dcf7bfeb6eccd5d0d13efc4832cf187e7 (diff) |
extmod/modmachine: Consolidate simple machine headers into modmachine.h.
The contents of machine_bitstream.h, machine_pinbase.h, machine_pulse.h and
machine_signal.h have been moved into extmod/modmachine.h.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/unix/modmachine.c')
-rw-r--r-- | ports/unix/modmachine.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ports/unix/modmachine.c b/ports/unix/modmachine.c index dd3cbf96c..2c1e0bed6 100644 --- a/ports/unix/modmachine.c +++ b/ports/unix/modmachine.c @@ -32,9 +32,7 @@ #include "py/obj.h" #include "extmod/machine_mem.h" -#include "extmod/machine_pinbase.h" -#include "extmod/machine_signal.h" -#include "extmod/machine_pulse.h" +#include "extmod/modmachine.h" #if MICROPY_PLAT_DEV_MEM #include <errno.h> |