32 lines
697 B
C
32 lines
697 B
C
/**
|
|
* @file assets_res.h
|
|
* @author Tianshuang Ke (dske@listenai.com)
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2025-01-22
|
|
*
|
|
* @copyright Copyright (c) 2021 - 2025 shenzhen listenai co., ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef __APP_COMMON_ASSETS_RES_H__
|
|
#define __APP_COMMON_ASSETS_RES_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
LV_FONT_DECLARE(lv_font_chinese_18);
|
|
LV_FONT_DECLARE(lv_font_notosans_cs_medium_18);
|
|
LV_FONT_DECLARE(lv_font_notosans_cs_medium_14);
|
|
LV_FONT_DECLARE(lv_font_rubik_bold_64);
|
|
LV_FONT_DECLARE(lv_font_rubik_bold_64_ascii);
|
|
|
|
LV_IMG_DECLARE(icon_img_app_default_png)
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /* __APP_COMMON_ASSETS_RES_H__ */
|