25 lines
714 B
C
25 lines
714 B
C
#ifndef BOARD_CONFIG_H
|
|
#define BOARD_CONFIG_H
|
|
|
|
/*
|
|
* 板级配置选择
|
|
*/
|
|
|
|
#define CONFIG_BOARD_AC636N_DEMO // CONFIG_APP_KEYBOARD
|
|
// #define CONFIG_BOARD_AC6366C_DEMO //
|
|
// #define CONFIG_BOARD_AC6368B_DEMO //
|
|
// #define CONFIG_BOARD_AC6369C_DEMO //
|
|
// #define CONFIG_BOARD_AC6368A_KEYFOB // CONFIG_APP_KEYFOB
|
|
// #define CONFIG_BOARD_AC6369F_MOUSE // CONFIG_APP_MOUSE
|
|
// #define CONFIG_BOARD_AC6363F_MOUSE // CONFIG_APP_MOUSE_XXX
|
|
|
|
#include "board_ac636n_demo_cfg.h"
|
|
#include "board_ac6366c_demo_cfg.h"
|
|
#include "board_ac6368b_demo_cfg.h"
|
|
#include "board_ac6369c_demo_cfg.h"
|
|
#include "board_ac6368a_keyfob_cfg.h"
|
|
#include "board_ac6369f_mouse_cfg.h"
|
|
#include "board_ac6363f_mouse_cfg.h"
|
|
|
|
#endif
|