-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
51 lines (42 loc) · 1.19 KB
/
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
51
/*********************************************************************************************
* Fichero: main.c
* Autor: Diego Royo Meneses <740388@unizar.es>, Victor M. Batlle <736478@unizar.es>
* Descrip: punto de entrada de C
* Version: <P4-ARM.timer-leds>
*********************************************************************************************/
#include "timer2.h"
#include "44blib.h"
#include "44b.h"
#include "reversi8_2018.h"
//#define TEST_BENCH_TIMER2
/*--- codigo de funciones ---*/
void Main(void)
{
/* Inicializa controladores */
sys_init(); // Inicializacion de la placa, interrupciones y puertos
timer2_inicializar(); // Inicialización del timer 2
#if defined (TEST_BENCH_TIMER2)
volatile unsigned int tiempo1ms,tiempo10ms,tiempo1s,tiempo10s;
while (1)
{
timer2_empezar();
Delay(10);
tiempo1ms = timer2_parar();
tiempo1ms++;tiempo1ms--;
timer2_empezar();
Delay(100);
tiempo10ms = timer2_parar();
tiempo10ms++;tiempo10ms--;
timer2_empezar();
Delay(10000);
tiempo1s = timer2_parar();
tiempo1s++;tiempo1s--;
timer2_empezar();
Delay(100000);
tiempo10s = timer2_parar();
tiempo10s++;tiempo10s--; /* [BREAKPOINT] */
}
#else
reversi8();
#endif
}