diff --git a/src/config/config.h b/src/config/config.h index c0ff75b..a176534 100644 --- a/src/config/config.h +++ b/src/config/config.h @@ -1,13 +1,10 @@ -/* - config.h - Wrangler for assorted compile-time configuration and constants. - - */ - #pragma once +#include +/// Wrangler for assorted compile-time configuration and constants. namespace config { - // Max number of extruders - static constexpr uint8_t tool_count = 5U; +/// Max number of extruders +static constexpr uint8_t tool_count = 5U; -} +} // namespace config