summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/timer.h
blob: 06e19bcc8bf92341a9c81035dfa33217b4665eea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Periodically, the state of the buffer "UserTxBuffer" is checked.
// The period depends on USBD_CDC_POLLING_INTERVAL
// The value is in ms. The max is 65 and the min is 1.
#define USBD_CDC_POLLING_INTERVAL (10)

extern TIM_HandleTypeDef TIM3_Handle;
extern TIM_HandleTypeDef TIM5_Handle;
extern TIM_HandleTypeDef TIM6_Handle;

void timer_tim3_init(void);
void timer_tim5_init(void);
void timer_tim6_init(uint freq);