Updated funconfig with doxygen comments and header guard stuff.
This commit is contained in:
parent
8e00f7406a
commit
4e6be91ac3
1 changed files with 19 additions and 1 deletions
|
|
@ -1,11 +1,29 @@
|
||||||
|
/**
|
||||||
|
* @brief CH32VFUN configuration header.
|
||||||
|
* @details This file is a ch32fun configuration file.
|
||||||
|
* @author Jake G
|
||||||
|
* @date TODAYS_YEAR
|
||||||
|
* @copyright None
|
||||||
|
* @file funconfig.h
|
||||||
|
*/
|
||||||
|
|
||||||
|
//Standard C header guard.
|
||||||
#ifndef _FUNCONFIG_H
|
#ifndef _FUNCONFIG_H
|
||||||
#define _FUNCONFIG_H
|
#define _FUNCONFIG_H
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C"
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
|
||||||
#define CH32V003 1
|
#define CH32V003 1
|
||||||
#define FUNCONF_USE_DEBUGPRINTF 0
|
#define FUNCONF_USE_DEBUGPRINTF 0
|
||||||
#define FUNCONF_USE_UARTPRINTF 1
|
#define FUNCONF_USE_UARTPRINTF 1
|
||||||
#define FUNCONF_UART_PRINTF_BAUD 115200
|
#define FUNCONF_UART_PRINTF_BAUD 115200
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif // __cplusplus
|
||||||
|
|
||||||
#endif
|
#endif //_FUNCONFIG_H
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue