b561b86f3b
2. dev mode commands (except those already available to users) start with 3xxxFFFF
26 lines
399 B
C
26 lines
399 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 9
|
|
#define VERSION_DATE_MINUTE 45
|
|
|
|
const elite_instance_t *cpg_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ! __CPG_H__ */
|