diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2021-02-19 18:34:03 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-19 18:34:03 -0800 |
| commit | 7b6f89a074feb849e03287e2fa3f39eb4b04e6ee (patch) | |
| tree | dbe916f5c070b3724d1c5ad5232be8fe8493242f /main.c | |
| parent | 220f86f873f8d8e2d00a82672470ef40fc68e147 (diff) | |
| parent | 985e02093690d835ef5adf8d253e1f0405d86538 (diff) | |
Merge pull request #4215 from dhalbert/secondary-cdc
Second USB CDC (serial) channel
Diffstat (limited to 'main.c')
| -rwxr-xr-x | main.c | 26 |
1 files changed, 15 insertions, 11 deletions
@@ -69,6 +69,19 @@ #include "shared-bindings/alarm/__init__.h" #endif +#if CIRCUITPY_BLEIO +#include "shared-bindings/_bleio/__init__.h" +#include "supervisor/shared/bluetooth.h" +#endif + +#if CIRCUITPY_BOARD +#include "shared-module/board/__init__.h" +#endif + +#if CIRCUITPY_CANIO +#include "common-hal/canio/CAN.h" +#endif + #if CIRCUITPY_DISPLAYIO #include "shared-module/displayio/__init__.h" #endif @@ -81,17 +94,8 @@ #include "shared-module/network/__init__.h" #endif -#if CIRCUITPY_BOARD -#include "shared-module/board/__init__.h" -#endif - -#if CIRCUITPY_BLEIO -#include "shared-bindings/_bleio/__init__.h" -#include "supervisor/shared/bluetooth.h" -#endif - -#if CIRCUITPY_CANIO -#include "common-hal/canio/CAN.h" +#if CIRCUITPY_USB_CDC +#include "shared-module/usb_cdc/__init__.h" #endif #if CIRCUITPY_WIFI |
