Removed uneeded call in reset_board_busses()

This commit is contained in:
root 2021-03-02 11:30:16 -06:00
parent 29c89a2487
commit 8bf5dd93c1

View File

@ -44,10 +44,6 @@
#include "shared-module/sharpdisplay/SharpMemoryFramebuffer.h" #include "shared-module/sharpdisplay/SharpMemoryFramebuffer.h"
#endif #endif
#if CIRCUITPY_RP2PIO
#include "bindings/rp2pio/StateMachine.h"
#endif
#if BOARD_I2C #if BOARD_I2C
// Statically allocate the I2C object so it can live past the end of the heap and into the next VM. // 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(). // 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 #if BOARD_UART
MP_STATE_VM(shared_uart_bus) = NULL; MP_STATE_VM(shared_uart_bus) = NULL;
#endif #endif
#if CIRCUITPY_RP2PIO
reset_rp2pio_statemachine();
#endif
} }