summaryrefslogtreecommitdiff
path: root/shared-bindings/microcontroller/__init__.h
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2021-02-11 16:19:12 -0500
committerLucian Copeland <hierophect@gmail.com>2021-02-11 16:19:12 -0500
commita061768ceb784f475b6a776df64432ed705c8d20 (patch)
treeb73ae66f9ff6488ae7d857793198c17104fdcfce /shared-bindings/microcontroller/__init__.h
parentd00bee2149825ee1e187a8a5bfc8c6e75874cc0b (diff)
parentaae10fb37fa402f9bc51f3edec0d2f7772036a25 (diff)
Merge remote-tracking branch 'upstream/main' into stm32-i2cstart
Diffstat (limited to 'shared-bindings/microcontroller/__init__.h')
-rw-r--r--shared-bindings/microcontroller/__init__.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared-bindings/microcontroller/__init__.h b/shared-bindings/microcontroller/__init__.h
index 39d3e718b..733127d56 100644
--- a/shared-bindings/microcontroller/__init__.h
+++ b/shared-bindings/microcontroller/__init__.h
@@ -48,7 +48,8 @@ extern const mp_obj_dict_t mcu_pin_globals;
#if CIRCUITPY_PROCESSOR_COUNT == 1
extern const mcu_processor_obj_t common_hal_mcu_processor_obj;
#elif CIRCUITPY_PROCESSOR_COUNT > 1
-extern const mp_rom_obj_tuple_t common_hal_mcu_processor_obj;
+extern const mcu_processor_obj_t common_hal_mcu_processor_obj;
+extern const mp_rom_obj_tuple_t common_hal_multi_processor_obj;
#else
#error "Invalid processor count"
#endif