mirror of
https://github.com/dekuNukem/USB4VC.git
synced 2025-10-31 11:26:46 -07:00
21 lines
254 B
C
21 lines
254 B
C
#ifndef __DELAYUS_H
|
|
#define __DELAYUS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "stm32f0xx_hal.h"
|
|
|
|
void delay_us_init(TIM_HandleTypeDef* htim_base);
|
|
void delay_us(uint32_t delay);
|
|
uint32_t micros(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|