fix(console): fixed secondary console not working on all chips without VFS

This commit is contained in:
Marius Vikhammer
2025-03-04 10:26:31 +08:00
parent 7f88aa2621
commit 12e9d6514a
30 changed files with 178 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
* SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
@@ -272,6 +272,16 @@ int ets_jtag_enable_temporarily(const uint8_t *jtag_hmac_key, ets_efuse_block_t
*/
unsigned char esp_crc8(unsigned char const *p, unsigned int len);
/**
* @brief Read if usb print in ROM disabled by efuse
*
*
* @return
* - 0 for enable.
* - 1 for disable.
*/
uint32_t ets_efuse_usb_print_is_disabled(void);
/**
* @}
*/