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.
18 lines
277 B
18 lines
277 B
1 week ago
|
/*
|
||
|
* bsp_TIMER.h
|
||
|
*
|
||
|
* Created on: Oct 26, 2023
|
||
|
* Author: shiya
|
||
|
*/
|
||
|
|
||
|
#ifndef INC_BSP_TIMER_H_
|
||
|
#define INC_BSP_TIMER_H_
|
||
|
|
||
|
#include "../../BASE/Inc/BSP/bsp_include.h"
|
||
|
|
||
|
uint8_t GF_BSP_TIMER_Init(void);
|
||
|
void GF_BSP_TIMER_DelayUS(uint32_t n);
|
||
|
|
||
|
|
||
|
#endif /* INC_BSP_TIMER_H_ */
|