summaryrefslogtreecommitdiffstats
path: root/firmware/export/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/config.h')
-rw-r--r--firmware/export/config.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h
index a93152b5e7..778e50f2c5 100644
--- a/firmware/export/config.h
+++ b/firmware/export/config.h
@@ -328,15 +328,24 @@
#define HAVE_EXTENDED_MESSAGING_AND_NAME
#endif
-#if (CONFIG_CODEC == SWCODEC) && !defined(BOOTLOADER)
+#if (CONFIG_CODEC == SWCODEC)
+#ifndef BOOTLOADER
+
#ifndef SIMULATOR
#define HAVE_PRIORITY_SCHEDULING
#define HAVE_SCHEDULER_BOOSTCTRL
#endif /* SIMULATOR */
+
#define HAVE_SEMAPHORE_OBJECTS
#define HAVE_EVENT_OBJECTS
-#if defined (TOSHIBA_GIGABEAT_F) || defined (TOSHIBA_GIGABEAT_S)
+#ifdef TOSHIBA_GIGABEAT_F
+#define HAVE_WAKEUP_OBJECTS
+#endif
+
+#endif /* BOOTLOADER */
+
+#ifdef TOSHIBA_GIGABEAT_S
#define HAVE_WAKEUP_OBJECTS
#endif
#endif