- 集成自定义字体ui_font_keyboard_small_18和ui_font_keyboard_time_48 - 配置LVGL编译选项,启用flex布局和压缩字体支持 - 实现完整的显示UI界面,包括日期时间、电池状态、连接状态等组件 - 添加显示模块的电源管理功能,支持自动休眠和唤醒 - 实现与电池状态、键盘LED、模式切换等事件的交互响应 - 添加1分钟空闲超时自动熄屏功能 - 使用自定义精简字体替换默认蒙特塞拉特字体
58 lines
1.7 KiB
CMake
58 lines
1.7 KiB
CMake
cmake_minimum_required(VERSION 3.20.0)
|
|
|
|
if(EXISTS "E:/extra/modules/ip5305")
|
|
list(APPEND ZEPHYR_EXTRA_MODULES "E:/extra/modules/ip5305")
|
|
endif()
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
project(new_kbd)
|
|
|
|
zephyr_include_directories(${CMAKE_CURRENT_SOURCE_DIR}/inc)
|
|
zephyr_include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src/events)
|
|
|
|
zephyr_compile_definitions(
|
|
LV_LVGL_H_INCLUDE_SIMPLE=1
|
|
LV_FONT_MONTSERRAT_14=0
|
|
LV_FONT_UNSCII_8=0
|
|
LV_FONT_DEFAULT=\&ui_font_keyboard_small_18
|
|
"LV_FONT_CUSTOM_DECLARE=LV_FONT_DECLARE(ui_font_keyboard_small_18) LV_FONT_DECLARE(ui_font_keyboard_time_48)"
|
|
)
|
|
|
|
target_compile_definitions(app PRIVATE
|
|
APP_HID_KEYMAP_DEF_PATH=\"hid_keymap_def.h\"
|
|
)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
src/events/battery_status_event.c
|
|
src/events/config_event.c
|
|
src/events/hid_boot_event.c
|
|
src/events/hid_protocol_event.c
|
|
src/events/hid_report_event.c
|
|
src/events/hid_tx_done_event.c
|
|
src/events/hid_tx_event.c
|
|
src/events/hid_vendor_mask_event.c
|
|
src/events/keyboard_led_event.c
|
|
src/events/mode_event.c
|
|
src/events/qdec_step_event.c
|
|
src/events/time_sync_event.c
|
|
src/modules/battery_module.c
|
|
src/modules/ble_adv_ctrl_module.c
|
|
src/modules/ble_battery_module.c
|
|
src/modules/ble_bond_module.c
|
|
src/modules/ble_time_sync_module.c
|
|
src/modules/ble_slot_ctrl_module.c
|
|
src/modules/display_module.c
|
|
src/modules/hid_tx_manager_module.c
|
|
src/modules/keyboard_module.c
|
|
src/modules/led_state_module.c
|
|
src/modules/mode_switch_module.c
|
|
src/modules/qdec_module.c
|
|
src/modules/time_manager_module.c
|
|
src/modules/usb_hid_module.c
|
|
src/modules/ble_hid_module.c
|
|
src/ui/fonts/ui_font_keyboard_small_18.c
|
|
src/ui/fonts/ui_font_keyboard_time_48.c
|
|
)
|