CH32V307_Template/src/main.c

17 lines
189 B
C
Raw Normal View History

// SPDX-License-Identifier: MIT
#include <stdio.h>
2022-03-29 08:19:12 +00:00
#include "debug.h"
2022-03-28 16:08:02 +00:00
int main(void) {
USART_Printf_Init(115200);
printf("Hello world?\r\n");
2022-03-28 16:08:02 +00:00
for(;;) {
//
}
}