Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

platformio configs #30

Merged
merged 1 commit into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ captures/
/data/music/wip*.pomf
/data/music/WIP*.pomf
/webroot/fvudata/*
/local/
4 changes: 4 additions & 0 deletions include/device_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
// #define HAS_BALANCE_BOARD_INTEGRATION

// Enable the yukkuri voice talking clock
#ifdef LIBAQUESTALK_FOUND
#define HAS_AQUESTALK
#else
#warning "Lib AquesTalk not found, TTS disabled"
#endif

// Disable the faux brightness reduction for some UI elements by drawing them only every other frame
// #define COMPOSABLE_NO_EVENODD
Expand Down
5 changes: 5 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[platformio]
extra_configs =
vortigont marked this conversation as resolved.
Show resolved Hide resolved
local/pio_*.ini


[common]
build_flags = -Os -DCORE_DEBUG_LEVEL=3 -DPDFB_PERF_LOGS -DPDFB_PERF_LOG_INTERVAL=1200 -DGP_NO_OTA -DGP_NO_DNS -DGP_NO_MDNS -D_IR_ENABLE_DEFAULT_=false -DDECODE_NEC=true -DDECODE_RC5=true -DDECODE_RC6=true -DDECODE_SONY=true

Expand Down