aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code
diff options
context:
space:
mode:
Diffstat (limited to 'mps/code')
-rw-r--r--mps/code/config.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/mps/code/config.h b/mps/code/config.h
index 5607c4efd7d..69ea603605e 100644
--- a/mps/code/config.h
+++ b/mps/code/config.h
@@ -29,17 +29,16 @@
29 * directives. 29 * directives.
30 */ 30 */
31 31
32#if defined(CONFIG_VAR_WI) || defined(CONFIG_VAR_WE) /* Hot varieties */ 32#if defined(CONFIG_VAR_WI) || defined(CONFIG_VAR_WE) /* White-hot varieties */
33/* no asserts */ 33/* no asserts */
34/* ... so CHECKLEVEL_INITIAL is irrelevant */ 34/* ... so CHECKLEVEL_INITIAL is irrelevant */
35/* no debug diagnostic statistic meters */ 35/* no debug diagnostic statistic meters */
36/* no telemetry log events */ 36/* no telemetry log events */
37 37
38#elif defined(CONFIG_VAR_HI) || defined(CONFIG_VAR_HE) /* Hot varieties */ 38#elif defined(CONFIG_VAR_HI) || defined(CONFIG_VAR_HE) /* Hot varieties */
39/* no asserts */ 39#define CONFIG_ASSERT
40#define CHECKLEVEL_INITIAL CheckLevelMINIMAL 40#define CHECKLEVEL_INITIAL CheckLevelMINIMAL
41/* @@@@ no asserts, so setting CHECKLEVEL_INITIAL has no effect! */ 41/* no debug diagnostic statistic meters */
42#define CONFIG_DEBUG
43/* no telemetry log events */ 42/* no telemetry log events */
44 43
45#elif defined(CONFIG_VAR_CI) || defined(CONFIG_VAR_CE) /* Cool varieties */ 44#elif defined(CONFIG_VAR_CI) || defined(CONFIG_VAR_CE) /* Cool varieties */
@@ -54,11 +53,10 @@
54#define CONFIG_DEBUG 53#define CONFIG_DEBUG
55#define CONFIG_LOG 54#define CONFIG_LOG
56 55
57#elif defined(CONFIG_VAR_II) /* Ice, Internal; variety.ii */ 56#elif defined(CONFIG_VAR_II) /* Ice, Internal; variety.ii (HotLog) */
58/* no asserts */ 57#define CONFIG_ASSERT
59#define CHECKLEVEL_INITIAL CheckLevelMINIMAL 58#define CHECKLEVEL_INITIAL CheckLevelMINIMAL
60/* @@@@ no asserts, so setting CHECKLEVEL_INITIAL has no effect! */ 59/* no debug diagnostic statistic meters */
61#define CONFIG_DEBUG
62#define CONFIG_LOG 60#define CONFIG_LOG
63#endif 61#endif
64 62