elbear_arduino_bsp/cores/arduino/board.h

17 lines
373 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)
// function for init called after setup()
void post_init(void);
void updateCacheLimit(void);
#include "stdint.h"
uint32_t getCLimit(void);
#endif /* _BOARD_H_ */