12 lines
169 B
C
12 lines
169 B
C
#ifndef _SYSTICK_H
|
|
#define _SYSTICK_H
|
|
|
|
#include "main.h"
|
|
|
|
extern volatile uint32_t systick;
|
|
|
|
void user_delay_ms(uint32_t ms);
|
|
void systick_init(uint32_t ticks);
|
|
|
|
#endif
|