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.
 
 

16 lines
271 B

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include "chip.h"
void chip_delay_init(TIM_HandleTypeDef *htim);
void chip_delay_us(uint32_t n);
void chip_delay_ms(uint32_t n);
uint32_t chip_get_ticket();
#ifdef __cplusplus
}
#endif