7e11828c6e
Created a new directory called bsp (board support package) to hold board or system on chip specific code. The idea is the following. Change-Id: Ica5886806940facae2fa5492fcc938b3c2b989be
13 lines
281 B
C
13 lines
281 B
C
#ifndef _BSP_TIMER_H_
|
|
#define _BSP_TIMER_H_
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
void bsp_timer_init(unsigned freq);
|
|
void bsp_timer_stop(void);
|
|
int bsp_register_timer_handler(const irq_handler_t handler);
|
|
void bsp_timer_int_handler(void);
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* _BSP_TIMER_H_ */
|