diff options
| author | root <siehputz@gmail.com> | 2021-03-02 11:30:16 -0600 |
|---|---|---|
| committer | root <siehputz@gmail.com> | 2021-03-02 11:30:16 -0600 |
| commit | 8bf5dd93c1f54b0afb70d3ff529e45f373a2298a (patch) | |
| tree | 9df096bffb1f9170385969515b3a918bf0d40290 | |
| parent | 29c89a2487d616e5a9f810915a603b21b7dc12cd (diff) | |
Removed uneeded call in reset_board_busses()
| -rw-r--r-- | shared-module/board/__init__.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/shared-module/board/__init__.c b/shared-module/board/__init__.c index eebd6e9b5..2f1c34e56 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 } |
