mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2026-03-18 13:31:57 +00:00
14 lines
263 B
C
14 lines
263 B
C
#ifndef EXOSPHERE_DBG_LOG_DEVICE_UART_H
|
|
#define EXOSPHERE_DBG_LOG_DEVICE_UART_H
|
|
|
|
#include "log.h"
|
|
|
|
typedef struct {
|
|
debug_log_device_t super;
|
|
bool is_initialized;
|
|
} debug_log_device_uart_t;
|
|
|
|
extern debug_log_device_uart_t g_debug_log_device_uart;
|
|
|
|
#endif
|