| 123456789101112131415161718192021222324 |
- /*!
- \file systick.h
- \brief the header file of systick
- */
- /*
- Copyright (C) 2017 GigaDevice
- 2017-06-06, V1.0.0, firmware for GD32F3x0
- */
- #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 */
|