15 lines
255 B
C
15 lines
255 B
C
#ifndef MY_SYSTICK_H
|
|
#define MY_SYSTICK_H
|
|
|
|
#include "stm32f103xb.h"
|
|
|
|
|
|
void MySysTick_Conf(uint32_t ticks);
|
|
|
|
void MySysTick_IT_Conf (void (*IT_function)(void), int Prio);
|
|
|
|
void MySysTick_IT_Enable (void);
|
|
|
|
void MySysTick_IT_Disable (void);
|
|
|
|
#endif
|