-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestManagementTimer.c
48 lines (40 loc) · 1.36 KB
/
TestManagementTimer.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
/*
Copyright (C) 2018 ER2C
Politektik Elektronika Negeri Surabaya
Agung Pambudi <[email protected]>
*/
///////////////////////////////////////////////////////////////////////////////
// Includes
///////////////////////////////////////////////////////////////////////////////
#include "flowrtos.h"
////////////////////////////////////////////////////////////////////////////////
// Code
////////////////////////////////////////////////////////////////////////////////
void main(void){
hardware_init();
management_timer_init();
while(true);
}
// void main(void){
// uint32_t interval, td, t1, t2, t;
// interval = 100000;
// td = interval;
// hardware_init();
// management_timer_init();
// while (td <= (interval*100)){
// t1=count_time_us;
// delay_us(td);
// t2=count_time_us;
// t = (t2 - t1) - td;
// PRINTF("%u %u\n\r", td/1000, t);
// // PRINTF("\n\rDelay %u us\n\r", td);
// // PRINTF("Start delay %u us\n\r", t1);
// // PRINTF("Stop delay %u us\n\r", t2);
// // PRINTF("Time missed %u us\n\r", t);
// t = 0;
// td += interval;
// }
// }
/*******************************************************************************
* EOF
******************************************************************************/