25 lines
408 B
C
25 lines
408 B
C
/*!
|
|
\file systick.h
|
|
\brief the header file of systick
|
|
*/
|
|
|
|
/*
|
|
Copyright (C) 2016 GigaDevice
|
|
|
|
2016-08-15, V1.0.0, firmware for GD32F4xx
|
|
*/
|
|
|
|
#ifndef SYS_TICK_H
|
|
#define SYS_TICK_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/* configure systick */
|
|
void systick_config(void);
|
|
/* delay a time in milliseconds */
|
|
void delay_1ms(uint32_t count);
|
|
/* delay decrement */
|
|
void delay_decrement(void);
|
|
|
|
#endif /* SYS_TICK_H */
|