stm32g0xx/Core/delay.h
2021-01-08 13:31:55 +01:00

9 lines
105 B
C

#ifndef __CORE_DELAY_H__
#define __CORE_DELAY_H__
#include <stdint.h>
void delay_ms(uint32_t);
#endif