18 lines
373 B
C
18 lines
373 B
C
#ifndef BOARD_CONFIG_H
|
|
#define BOARD_CONFIG_H
|
|
|
|
/*
|
|
* 板级配置选择
|
|
*/
|
|
|
|
#define CONFIG_BOARD_AC637N_DEMO
|
|
// #define CONFIG_BOARD_AC6373B_DEMO
|
|
// #define CONFIG_BOARD_AC6376F_DEMO
|
|
// #define CONFIG_BOARD_AC6379B_DEMO
|
|
|
|
#include "board_ac637n_demo_cfg.h"
|
|
#include "board_ac6373b_demo_cfg.h"
|
|
#include "board_ac6376f_demo_cfg.h"
|
|
#include "board_ac6379b_demo_cfg.h"
|
|
#endif
|