| 94 | #if CONFIG(GDB_STUB) && (ENV_ROMSTAGE_OR_BEFORE || ENV_RAMSTAGE) |
| 95 | #define CONF_UART_FOR_GDB CONFIG_UART_FOR_CONSOLE |
| 96 | static inline void __gdb_hw_init(void) { uart_init(CONF_UART_FOR_GDB); } |
| 97 | static inline void __gdb_tx_byte(u8 data) |
| 98 | { |
| 99 | uart_tx_byte(CONF_UART_FOR_GDB, data); |
no test coverage detected