blob: 247ed1c3f5c64bab3c27a59c9ad13dabb09d7e80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// 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 <stdio.h>
int main(void){
// initialization code
System_Clock_Init(); // set System Clock = 80 MHz
LED_Init();
UART2_Init();
printf("Hello world \r\n");
run();
// application run function
// run_demo() ;
}
|