mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-23 01:05:14 +00:00
refactor (bootloader_support): include_bootloader/ -> private_include/
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @brief Initialize console output (UART or USB)
|
||||
*/
|
||||
void bootloader_console_init(void);
|
||||
|
||||
/**
|
||||
* @brief Flush and otherwise de-initialize console output.
|
||||
*/
|
||||
void bootloader_console_deinit(void);
|
||||
|
||||
/**
|
||||
* @brief "Write character to USB" function for ets_install_putc1.
|
||||
* Only defined if USB CDC is used for console output.
|
||||
*/
|
||||
void bootloader_console_write_char_usb(char c);
|
Reference in New Issue
Block a user