generated from lvgl/board_template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hello_world: added a proper hello world application
Signed-off-by: Felipe Neves <[email protected]>
- Loading branch information
Showing
85 changed files
with
6,299 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
cmake_minimum_required(VERSION 3.13.1) | ||
|
||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) | ||
project(hello_world) | ||
|
||
add_subdirectory(src) | ||
|
||
if(CONFIG_STACK_CANARIES) | ||
zephyr_library_compile_options(-DAPP_BT_WATCH -fstack-protector-all) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
|
||
mainmenu "lvgl demo" | ||
|
||
source "Kconfig.zephyr" | ||
|
||
menu "App Configuration" | ||
endmenu |
36 changes: 36 additions & 0 deletions
36
action_technology_sdk/hello_world/boards/ats3085e_dev_watch_ext_nor.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
CONFIG_LV_VDB_SIZE=36348 | ||
CONFIG_UI_GUI_MEM_POOL_SIZE=391216 | ||
CONFIG_UI_RES_MEM_POOL_SIZE=0 | ||
#CONFIG_BITMAP_PER_FONT_CACHE_SIZE=16552 | ||
CONFIG_BITMAP_FONT_CACHE_POOL_SIZE=0 | ||
CONFIG_FREETYPE_FONT_BITMAP_BPP=2 | ||
CONFIG_FREETYPE_PER_FONT_CACHE_SIZE=24576 | ||
CONFIG_FREETYPE_FONT_ENABLE_MEMORY_FACE=y | ||
CONFIG_FREETYPE_FONT_MAX_FACES=2 | ||
CONFIG_FREETYPE_FONT_MAX_SIZES=3 | ||
CONFIG_FREETYPE_FONT_SHAPE_CACHE_SIZE=0 | ||
|
||
CONFIG_SPINAND_ACTS=n | ||
CONFIG_SPINAND_LIB=n | ||
|
||
CONFIG_DISK_ACCESS_NOR=y | ||
|
||
CONFIG_IPMSG_BTC_FCC_NAME="/NOR:K/fcc.bin" | ||
|
||
CONFIG_USER_WORK_Q=y | ||
CONFIG_USER_WORK_Q_PRIORITY=8 | ||
|
||
CONFIG_DVFS=y | ||
CONFIG_ACTS_DVFS_DYNAMIC_LEVEL=y | ||
|
||
CONFIG_SENSOR_ALGO_MOTION_CYWEE_IN_RAM=n | ||
|
||
CONFIG_USB_DEVICE=n | ||
CONFIG_USB_AOTG_OTG=n | ||
CONFIG_USB_AOTG_DC_ENABLED=n | ||
CONFIG_USB_AOTG_OTG_VERSION=0x551A24CF | ||
CONFIG_USB_DEVICE_DRIVER=n | ||
CONFIG_USB_DEVICE_STACK=n | ||
CONFIG_USB_MASS_STORAGE=n | ||
CONFIG_HAVE_CUSTOM_LINKER_SCRIPT=y | ||
CONFIG_CUSTOM_LINKER_SCRIPT="linker_no_psram.ld" |
45 changes: 45 additions & 0 deletions
45
action_technology_sdk/hello_world/boards/ats3085s4_dev_watch_ext_nor.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
CONFIG_LV_VDB_SIZE=108608 | ||
CONFIG_UI_GUI_MEM_POOL_SIZE=49152 | ||
CONFIG_UI_RES_MEM_POOL_SIZE=0 | ||
#CONFIG_BITMAP_PER_FONT_CACHE_SIZE=16552 | ||
CONFIG_BITMAP_FONT_CACHE_POOL_SIZE=180000 | ||
CONFIG_FREETYPE_FONT_BITMAP_BPP=2 | ||
CONFIG_FREETYPE_PER_FONT_CACHE_SIZE=40960 | ||
CONFIG_FREETYPE_FONT_ENABLE_MEMORY_FACE=y | ||
CONFIG_FREETYPE_FONT_MAX_FACES=2 | ||
CONFIG_FREETYPE_FONT_MAX_SIZES=3 | ||
CONFIG_FREETYPE_FONT_SHAPE_CACHE_SIZE=120000 | ||
|
||
|
||
CONFIG_SPINAND_ACTS=n | ||
CONFIG_SPINAND_LIB=n | ||
|
||
CONFIG_VG_LITE=y | ||
CONFIG_VG_LITE_K_MEM_POOL_SIZE=172032 | ||
|
||
CONFIG_DISK_ACCESS_NOR=y | ||
|
||
CONFIG_IPMSG_BTC_FCC_NAME="/NOR:K/fcc.bin" | ||
|
||
CONFIG_USER_WORK_Q=y | ||
CONFIG_USER_WORK_Q_PRIORITY=8 | ||
|
||
CONFIG_UI_MEM_VDB_SHARE_SURFACE_BUFFER=y | ||
|
||
CONFIG_DVFS=y | ||
CONFIG_ACTS_DVFS_DYNAMIC_LEVEL=y | ||
|
||
CONFIG_SENSOR_ALGO_MOTION_CYWEE_IN_RAM=n | ||
|
||
CONFIG_USB_DEVICE=n | ||
CONFIG_USB_AOTG_OTG=n | ||
CONFIG_USB_AOTG_DC_ENABLED=n | ||
CONFIG_USB_AOTG_OTG_VERSION=0x551A24CF | ||
CONFIG_USB_DEVICE_DRIVER=n | ||
CONFIG_USB_DEVICE_STACK=n | ||
CONFIG_USB_MASS_STORAGE=n | ||
|
||
CONFIG_HAVE_CUSTOM_LINKER_SCRIPT=y | ||
CONFIG_CUSTOM_LINKER_SCRIPT="linker_psram_4m.ld" | ||
|
||
|
Oops, something went wrong.