mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
30 lines
440 B
C
30 lines
440 B
C
/*
|
|
* Copyright (c) 2023, Artinchip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __PROGRESS_BAR__
|
|
#define __PROGRESS_BAR__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <aic_core.h>
|
|
|
|
#ifdef AIC_BOOTLOADER_CMD_PROGRESS_BAR
|
|
void aicfb_draw_bar(unsigned int value);
|
|
#else
|
|
static inline void aicfb_draw_bar(unsigned int value)
|
|
{
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __PROGRESS_BAR__ */
|