// main.c with demo // Updated and refactored Larry Kiser copyright 2021 // include project specific header files #include "error_handler.h" #include "SysClock.h" #include "LED.h" #include "UART.h" #include "demo.h" #include int main(void){ // initialization code System_Clock_Init(); // set System Clock = 80 MHz LED_Init(); UART2_Init(); int a = 1; int b = 2; printf("Hello %i %i \n\r", a, b); // application run function // run_demo() ; }