mirror of
https://gitee.com/Polarix/simplegui.git
synced 2025-06-17 13:37:52 +00:00
11 lines
262 B
C
11 lines
262 B
C
#ifndef __INCLUDE_TIMER_H__
|
|
#define __INCLUDE_TIMER_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include "stm32f10x_tim.h"
|
|
|
|
void TIM3_Int_Init(TIM_TypeDef* pstTimerBase, uint16_t uiReloadValue, uint16_t uiPrescaler);
|
|
|
|
#endif /* __INCLUDE_TIMER_H__ */
|