Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/include/platform/sunburst/platform-adc.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sdk/include/platform/sunburst/platform-ethernet.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sdk/include/platform/sunburst/platform-i2c.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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<DebugOpenTitanI2c, "OpenTitan I2C">;
Expand Down
Loading