R2_UP/User/bsp/delay.h

17 lines
521 B
C
Raw Normal View History

2025-03-12 10:46:02 +08:00
#ifndef DELAY_H
#define DELAY_H
/* Includes ----------------------------------------------------------------- */
#include <stdint.h>
#include "bsp/bsp.h"
/* Exported constants ------------------------------------------------------- */
/* Exported macro ----------------------------------------------------------- */
/* Exported types ----------------------------------------------------------- */
/* Exported functions prototypes -------------------------------------------- */
int8_t BSP_Delay(uint32_t ms);
#endif