Remove unused pin-init for fbs3

It's co-commit time.

Co-authored-by: Dan Halbert <halbert@halwitz.org>
This commit is contained in:
Bill Sideris 2023-11-21 14:32:12 +02:00 committed by GitHub
parent a37e60f55c
commit d467ef3f0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 15 deletions

View File

@ -26,19 +26,4 @@
#include "supervisor/board.h"
// bool espressif_board_reset_pin_number(gpio_num_t pin_number) {
// if (pin_number == 47) {
// /*
// * Turn on PWR by default,
// * so that the board does not power off
// * when usb is disconnected or
// * the power button is released.
// */
// gpio_set_direction(pin_number, GPIO_MODE_DEF_OUTPUT);
// gpio_set_level(pin_number, true);
// return true;
// }
// return false;
// }
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.