mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
17 lines
263 B
C
17 lines
263 B
C
/*
|
|
* Copyright (c) 2023, Artinchip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Wudehuang <dehuang.wu@artinchip.com>
|
|
*/
|
|
|
|
#ifndef __BL_BOOT_H_
|
|
#define __BL_BOOT_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
void boot_app(void *app);
|
|
|
|
#endif /* __BL_BOOT_H_ */
|