We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c6d33a commit 9d97f79Copy full SHA for 9d97f79
ports/espressif/boards/m5stack_cardputer/board.c
@@ -108,16 +108,6 @@ void board_init(void) {
108
);
109
}
110
111
-bool espressif_board_reset_pin_number(gpio_num_t pin_number) {
112
- // Override the I2C/TFT power pin reset to prevent resetting the display.
113
- if (pin_number == 21) {
114
- // Turn on TFT and I2C
115
- gpio_set_direction(21, GPIO_MODE_DEF_OUTPUT);
116
- gpio_set_level(21, true);
117
- return true;
118
- }
119
- return false;
120
-}
121
122
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.
123
0 commit comments