26 lines
417 B
C
26 lines
417 B
C
#ifndef __WK_BSP_H
|
|
#define __WK_BSP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* includes -----------------------------------------------------------------------*/
|
|
#include "wk_gpio.h"
|
|
#include "wk_usart.h"
|
|
#include "SEGGER_RTT.h"
|
|
#include "wk_tmr.h"
|
|
#include "wk_can.h"
|
|
|
|
#define RTT_LOG(...) //SEGGER_RTT_printf(0, __VA_ARGS__)
|
|
|
|
void at32_bsp_init(void);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|