diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-09-07 10:42:06 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-09-07 10:42:06 +0200 |
commit | dd4cb31da6c7768dea7a62057057d5cd0f2bf8e2 (patch) | |
tree | 015325cbec08ef8a352626a6546ec7bc91f029fa | |
parent | 949ff6a5f74d3f8112c9e6489bbfefaed491b170 (diff) |
mkconfig: add defaults for look, wakeup, ostream
-rwxr-xr-x | script/mkconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/script/mkconfig b/script/mkconfig index a3637ad..66da07c 100755 --- a/script/mkconfig +++ b/script/mkconfig @@ -6,12 +6,15 @@ menu "System" config loop bool "Regularly call loop()" +default y config wakeup bool "Call wakeup() on wakeup" +default n config ostream bool "C++ ostream support in stdout" +default n depends on arch_esp8266 || arch_msp430fr5969lp || arch_msp430fr5994lp || arch_posix config i2c_freq |