mirror of
https://github.com/EranMorkon/AMTS.git
synced 2023-12-28 16:48:38 +00:00
13 lines
280 B
C
13 lines
280 B
C
#ifndef SYSTICK_H
|
|
#define SYSTICK_H
|
|
|
|
#include "stm32f10x.h" // Device header
|
|
#include "stm32f10x_rcc.h" // Keil::Device:StdPeriph Drivers:RCC
|
|
|
|
extern volatile uint32_t SysTickCnt;
|
|
|
|
void systick_init(void);
|
|
void Wait(uint32_t ms);
|
|
|
|
#endif
|