bsp_custom.h 470 B

12345678910111213141516171819
  1. #ifndef BSP_CUSTOM_H
  2. #define BSP_CUSTOM_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "bsp.h"
  7. #include "hal_module_adapter.h"
  8. #define getbit(x,y) ((x) >> (y)&1) //获取x的第y位的数值
  9. #define setbit(x,y) x|=(1<<y) //x的第y位置1
  10. #define clrbit(x,y) x&=~(1<<y) //x的第y位置0
  11. void BSP_CustomInit(void);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* BSP_CUSTOM_H */