You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
353 B

1 year ago
  1. #pragma once
  2. #include <stdint.h>
  3. #include "main.h"
  4. extern "C" {
  5. // 微秒延迟定时器,注意该延时定时器需要按照以下文档进行配置
  6. // http://192.168.1.3:3000/zwikipedia/iflytop_wikipedia/src/branch/master/doc/stm32cubemx_us_timer.md
  7. uint32_t zusdelay_init(TIM_HandleTypeDef* tim);
  8. void zusdelay_early_delayus(uint32_t us);
  9. }