diff options
| author | HiFiPhile <[email protected]> | 2025-09-18 19:08:18 +0200 |
|---|---|---|
| committer | HiFiPhile <[email protected]> | 2025-09-18 19:08:18 +0200 |
| commit | b4cc5af32df89199aae7a01e69307c3bbd34eac8 (patch) | |
| tree | b35fe67cedb519d346d01cb2ce2e90a57f6d94ac | |
| parent | be618ba084a00c8a16e9e95ab0be354b09ac2a0a (diff) | |
Fix ESP32 build
Signed-off-by: HiFiPhile <[email protected]>
| -rw-r--r-- | hw/bsp/espressif/boards/family.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hw/bsp/espressif/boards/family.c b/hw/bsp/espressif/boards/family.c index 28dd49143..a837417f4 100644 --- a/hw/bsp/espressif/boards/family.c +++ b/hw/bsp/espressif/boards/family.c @@ -160,6 +160,14 @@ void board_putchar(int c) { putchar(c); } +void board_init_after_tusb(void) { + // nothing to do +} + +void board_reset_to_bootloader(void) { + // not implemented +} + //-------------------------------------------------------------------- // PHY Init //-------------------------------------------------------------------- |
