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
@@ -0,0 +1,21 @@
/*
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Outputs a char to the configured primary and secondary console
*
* @param c char to output
*/
void esp_system_console_put_char(char c);
#ifdef __cplusplus
}
#endif