From 8bf5dd93c1f54b0afb70d3ff529e45f373a2298a Mon Sep 17 00:00:00 2001 From: root Date: Tue, 2 Mar 2021 11:30:16 -0600 Subject: [PATCH] Removed uneeded call in reset_board_busses() --- shared-module/board/__init__.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/shared-module/board/__init__.c b/shared-module/board/__init__.c index eebd6e9b57..2f1c34e565 100644 --- a/shared-module/board/__init__.c +++ b/shared-module/board/__init__.c @@ -44,10 +44,6 @@ #include "shared-module/sharpdisplay/SharpMemoryFramebuffer.h" #endif -#if CIRCUITPY_RP2PIO -#include "bindings/rp2pio/StateMachine.h" -#endif - #if BOARD_I2C // Statically allocate the I2C object so it can live past the end of the heap and into the next VM. // That way it can be used by built-in I2CDisplay displays and be accessible through board.I2C(). @@ -183,7 +179,4 @@ void reset_board_busses(void) { #if BOARD_UART MP_STATE_VM(shared_uart_bus) = NULL; #endif -#if CIRCUITPY_RP2PIO - reset_rp2pio_statemachine(); -#endif }