EV-Embedded-Control-System/project/inc/wk_bsp.h

26 lines
417 B
C
Raw Permalink Normal View History

#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