-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
50 lines (40 loc) · 851 Bytes
/
main.c
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
. _ .
|\_|/__/|
/ / \/ \ \
/__|O||O|__ \
|/_ \_/\_/ _\ |
| | (____) | ||
\/\___/\__/ //
(_/ ||
| ||
| ||\
\ //_/
\______//
__ || __||
(____(____)
Electropioneer Framework for AT90CAN128 based board, developed by Silard Gal 2017.
https://github.com/Elektropioneer
http://elektropioneer.co.rs/
For more info visit the README
*/
#include <avr/io.h>
#include <util/delay.h>
#include <stdlib.h>
#include <string.h>
#include "usart.h"
#include "actuator.h"
#include "gpio.h"
#include "system.h"
#include "sides.h"
#include "sensors.h"
#include "can.h"
#include <avr/interrupt.h>
#include "ax.h"
#include "score_display.h"
#include "debug_display.h"
int main()
{
system_init();
return 0;
}//end of main()