forked from Elron_dev/elbear_arduino_bsp
13 lines
330 B
C
13 lines
330 B
C
#ifndef _BOARD_H_
|
|
#define _BOARD_H_
|
|
|
|
extern volatile bool use_error_messages;
|
|
#define DISABLE_ERROR_MESSAGES() (use_error_messages = false)
|
|
#define ENABLE_ERROR_MESSAGES() (use_error_messages = true)
|
|
|
|
// functions for init called before and after setup()
|
|
void pre_init(void) ;
|
|
void post_init(void);
|
|
|
|
#endif /* _BOARD_H_ */
|