12345678910111213141516171819 |
- #ifndef BSP_CUSTOM_H
- #define BSP_CUSTOM_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "bsp.h"
- #include "hal_module_adapter.h"
- #define getbit(x,y) ((x) >> (y)&1) //获取x的第y位的数值
- #define setbit(x,y) x|=(1<<y) //x的第y位置1
- #define clrbit(x,y) x&=~(1<<y) //x的第y位置0
- void BSP_CustomInit(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* BSP_CUSTOM_H */
|