17 lines
521 B
C
17 lines
521 B
C
|
#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
|