Fix newline and comment

This commit is contained in:
XorTroll 2020-05-07 13:24:24 +02:00
parent d74751d5e9
commit b773112dd4
2 changed files with 2 additions and 2 deletions

View File

@ -404,4 +404,4 @@ NX_INLINE void diagLogImpl(const DiagLogMetadata *metadata) {
#define DIAG_LOGF(fmt, ...) DIAG_DETAILED_LOGF(DiagLogSeverity_Info, false, fmt, ##__VA_ARGS__) #define DIAG_LOGF(fmt, ...) DIAG_DETAILED_LOGF(DiagLogSeverity_Info, false, fmt, ##__VA_ARGS__)
#define DIAG_VLOG(fmt, args) DIAG_DETAILED_VLOG(DiagLogSeverity_Info, false, fmt, args) #define DIAG_VLOG(fmt, args) DIAG_DETAILED_VLOG(DiagLogSeverity_Info, false, fmt, args)

View File

@ -13,7 +13,7 @@
typedef enum { typedef enum {
LmLogDestination_TMA = BIT(0), ///< Logs to TMA. LmLogDestination_TMA = BIT(0), ///< Logs to TMA.
LmLogDestination_UART = BIT(1), ///< Logs to UART. LmLogDestination_UART = BIT(1), ///< Logs to UART.
LmLogDestination_UARTSleeping = BIT(2), ///< Logs to UART (). LmLogDestination_UARTSleeping = BIT(2), ///< Logs to UART (when sleeping).
LmLogDestination_All = 0xFFFF, ///< Logs to all locations. LmLogDestination_All = 0xFFFF, ///< Logs to all locations.
} LmLogDestination; } LmLogDestination;