You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
202 B
C
15 lines
202 B
C
|
2 years ago
|
#ifndef BSP_H_
|
||
|
|
#define BSP_H_
|
||
|
|
|
||
|
|
void BSP_init(void);
|
||
|
|
|
||
|
|
void BSP_led4On(void);
|
||
|
|
void BSP_led4Off(void);
|
||
|
|
|
||
|
|
void BSP_led5On(void);
|
||
|
|
void BSP_led5Off(void);
|
||
|
|
|
||
|
|
void BSP_delay(int volatile iter);
|
||
|
|
|
||
|
|
#endif // BSP_H_
|