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 /extmod/machine_bitstream.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 'extmod/machine_bitstream.c')
-rw-r--r-- | extmod/machine_bitstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/machine_bitstream.c b/extmod/machine_bitstream.c index 30f1ff1ea..af093a4b5 100644 --- a/extmod/machine_bitstream.c +++ b/extmod/machine_bitstream.c @@ -27,7 +27,7 @@ #include "py/runtime.h" #include "py/mphal.h" -#include "extmod/machine_bitstream.h" +#include "extmod/modmachine.h" #if MICROPY_PY_MACHINE_BITSTREAM |