26 lines
400 B
C
26 lines
400 B
C
#ifndef __CPG_H__
|
|
#define __CPG_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "app_config.h"
|
|
#include "elite.h"
|
|
#include "elite_board.h"
|
|
|
|
#define VERSION_DATE_YEAR 25
|
|
#define VERSION_DATE_MONTH 3
|
|
#define VERSION_DATE_DAY 28
|
|
#define VERSION_DATE_HOUR 15
|
|
#define VERSION_DATE_MINUTE 35
|
|
|
|
const elite_instance_t *cpg_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __CPG_H__ */
|