dwt.h 476 B

1234567891011121314151617181920
  1. /*
  2. *********************************************************************************************************
  3. *
  4. * 模块名称 : 数据观察点与跟踪(DWT)模块
  5. * 文件名称 : dwt.h
  6. * 版 本 : V1.0
  7. * 说 明 : 头文件
  8. *********************************************************************************************************
  9. */
  10. #ifndef __BSP_DWT_H
  11. #define __BSP_DWT_H
  12. #include <stm32f4xx.h>
  13. void dwt_init(void);
  14. void delay_us(uint32_t us_time);
  15. void delay_ms(uint32_t us_time);
  16. #endif