-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestTimerCounterUp.c
34 lines (29 loc) · 1.16 KB
/
TestTimerCounterUp.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
/*
Copyright (C) 2018 ER2C
Politektik Elektronika Negeri Surabaya
Agung Pambudi <[email protected]>
*/
/*******************************************************************************
* NOTE
* Hilangkan comment pada souce code file flowrtos_timer dibawah tulisan
* "mencetak hasil pembangkitan waktu"
* if((count_time_us%1000000)==0)
* {
* PRINTF("%u us || %u ms || %u s || every 1 second\n\r", count_time_us, count_time_ms, count_time_ms/1000);
* }
******************************************************************************/
///////////////////////////////////////////////////////////////////////////////
// Includes
///////////////////////////////////////////////////////////////////////////////
#include "flowrtos.h"
////////////////////////////////////////////////////////////////////////////////
// Code
////////////////////////////////////////////////////////////////////////////////
void main(void){
management_io();
management_timer_init();
while(true);
}
/*******************************************************************************
* EOF
******************************************************************************/