refactor: sync from template - ENABLE/DISABLE macro pattern

- board_config.h: replace #define/#undef with ENABLE/DISABLE constants
- All debug switches use ENABLE/DISABLE instead of define/undef
- Replace #ifdef with #if MACRO == ENABLE across all sources
- Sync updated README documentation
This commit is contained in:
Nova
2026-07-28 00:45:49 +08:00
parent 0cf931c0e9
commit 69352e92cf
7 changed files with 171 additions and 55 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ void USART0_IRQHandler(void) {
g_usart_config.irq_handler(); // 通过函数指针调用对应的处理函数
}
// 作为调试口(第二串口)时也接收数据,便于模拟上位机命令
#ifdef DEBUG_MODE
#if DEBUG_MODE == ENABLE
else {
usart0_irq_handler();
}