forked from Elron_dev/elbear_arduino_bsp
9 lines
159 B
C
9 lines
159 B
C
#ifndef _BOARD_H_
|
|
#define _BOARD_H_
|
|
|
|
// functions for init called before and after setup()
|
|
void pre_init(void) ;
|
|
void post_init(void);
|
|
|
|
#endif /* _BOARD_H_ */
|