mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-16 09:08:56 +00:00
23 lines
378 B
C
23 lines
378 B
C
/*
|
|
* Copyright (c) 2023-2025, ArtInChip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __BL_AICUPG_FOR_UART_H_
|
|
#define __BL_AICUPG_FOR_UART_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void aic_uart_upg_init(int id);
|
|
void aic_uart_upg_deinit(int id);
|
|
void aic_uart_upg_loop(int id);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __BL_AICUPG_FOR_UART_H_ */
|