21 lines
257 B
C
21 lines
257 B
C
/*!
|
|
\file main.h
|
|
\brief the header file of main
|
|
*/
|
|
|
|
/*
|
|
Copyright (C) 2016 GigaDevice
|
|
|
|
2016-08-15, V1.0.0, firmware for GD32F4xx
|
|
*/
|
|
|
|
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
/* led spark function */
|
|
void led_spark(void);
|
|
|
|
#endif /* __MAIN_H */
|
|
|
|
|