diff --git a/sdk/include/platform/sunburst/platform-adc.hh b/sdk/include/platform/sunburst/platform-adc.hh index 242576c37..07608c5cd 100644 --- a/sdk/include/platform/sunburst/platform-adc.hh +++ b/sdk/include/platform/sunburst/platform-adc.hh @@ -17,7 +17,7 @@ class SonataAnalogueDigitalConverter : private utils::NoCopyNoMove /** * Flag to set when debugging the driver for UART log messages. */ - static constexpr bool DebugDriver = true; + static constexpr bool DebugDriver = false; /** * Helper for conditional debug logs and assertions. diff --git a/sdk/include/platform/sunburst/platform-ethernet.hh b/sdk/include/platform/sunburst/platform-ethernet.hh index 0e9b3a78a..6a0fa2ca7 100644 --- a/sdk/include/platform/sunburst/platform-ethernet.hh +++ b/sdk/include/platform/sunburst/platform-ethernet.hh @@ -32,7 +32,7 @@ class Ksz8851Ethernet /** * Flag set to log messages when frames are dropped. */ - static constexpr bool DebugDroppedFrames = true; + static constexpr bool DebugDroppedFrames = false; /** * Maxmium size of a single Ethernet frame. diff --git a/sdk/include/platform/sunburst/platform-i2c.hh b/sdk/include/platform/sunburst/platform-i2c.hh index 2332a8a37..2eaaa4b42 100644 --- a/sdk/include/platform/sunburst/platform-i2c.hh +++ b/sdk/include/platform/sunburst/platform-i2c.hh @@ -234,7 +234,7 @@ struct OpenTitanI2c }; /// Flag set when we're debugging this driver. - static constexpr bool DebugOpenTitanI2c = true; + static constexpr bool DebugOpenTitanI2c = false; /// Helper for conditional debug logs and assertions. using Debug = ConditionalDebug;