void HAL_UART_TxCpltCallback(UART_HandleTypeDef *huart) { HAL_UART_Transmit_IT(&huart1, a, sizeof(a)); } 1. 2. 3. 4. 在主函数中添加中断调用 HAL_UART_Transmit_IT(&huart1, a, sizeof(a)); 1. 编译烧录运行,输出hello world! 五、总结 这次用了中断,对于点个灯来说,可能感觉不到...