Skip to content

Commit

Permalink
allow user to have it's own platformio configs
Browse files Browse the repository at this point in the history
allow disabling AQUESTALK/BT via build flags without hacking device_config
  • Loading branch information
vortigont committed Dec 14, 2024
1 parent ddb85b1 commit bc32437
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
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/
2 changes: 2 additions & 0 deletions include/device_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@
// #define HAS_BALANCE_BOARD_INTEGRATION

// Enable the yukkuri voice talking clock
#ifdef LIBAQUESTALK_FOUND
#define HAS_AQUESTALK
#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 =
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

0 comments on commit bc32437

Please sign in to comment.