df6d296fa87770ec1eae3a2f61c48230aa26bdcd
Stefan Schuermans added cycle counter peripheral

Stefan Schuermans authored 12 years ago

1) #ifndef CYC_CNT_H
2) #define CYC_CNT_H
3) 
4) /**
5)  * @brief read cycle counter
6)  * @return cycle counter value
7)  */
8) unsigned int cyc_cnt_read(void);
9) 
Stefan Schuermans implemented LCD peripheral

Stefan Schuermans authored 12 years ago

10) /**
11)  * @brief delay for a number of cycles
12)  * @param[in] cyc number of cycles
13)  */
14) void cyc_cnt_delay(unsigned int cyc);
15) 
16) /**
17)  * @brief delay for a number of microseconds
18)  * @param[in] us number of microseconds
19)  */
20) void cyc_cnt_delay_us(unsigned int us);
21) 
22) /**
23)  * @brief delay for a number of milliseconds
24)  * @param[in] ms number of milliseconds
25)  */
26) void cyc_cnt_delay_ms(unsigned int ms);
27)