Skip to content

Commit b7a63dc

Browse files
committed
Alphabetical
1 parent b47fd08 commit b7a63dc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

py/circuitpy_mpconfig.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -588,13 +588,6 @@ extern const struct _mp_obj_module_t random_module;
588588
#define RANDOM_MODULE
589589
#endif
590590

591-
#if CIRCUITPY_RP2PIO
592-
extern const struct _mp_obj_module_t rp2pio_module;
593-
#define RP2PIO_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_rp2pio),(mp_obj_t)&rp2pio_module },
594-
#else
595-
#define RP2PIO_MODULE
596-
#endif
597-
598591
#if CIRCUITPY_RGBMATRIX
599592
extern const struct _mp_obj_module_t rgbmatrix_module;
600593
#define RGBMATRIX_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_rgbmatrix),(mp_obj_t)&rgbmatrix_module },
@@ -609,6 +602,13 @@ extern const struct _mp_obj_module_t rotaryio_module;
609602
#define ROTARYIO_MODULE
610603
#endif
611604

605+
#if CIRCUITPY_RP2PIO
606+
extern const struct _mp_obj_module_t rp2pio_module;
607+
#define RP2PIO_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_rp2pio),(mp_obj_t)&rp2pio_module },
608+
#else
609+
#define RP2PIO_MODULE
610+
#endif
611+
612612
#if CIRCUITPY_RTC
613613
extern const struct _mp_obj_module_t rtc_module;
614614
#define RTC_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_rtc), (mp_obj_t)&rtc_module },
@@ -856,10 +856,10 @@ extern const struct _mp_obj_module_t msgpack_module;
856856
PULSEIO_MODULE \
857857
PWMIO_MODULE \
858858
RANDOM_MODULE \
859-
RP2PIO_MODULE \
860859
RE_MODULE \
861860
RGBMATRIX_MODULE \
862861
ROTARYIO_MODULE \
862+
RP2PIO_MODULE \
863863
RTC_MODULE \
864864
SAMD_MODULE \
865865
SDCARDIO_MODULE \

0 commit comments

Comments
 (0)