40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
|
#ifndef BOARD_CONFIG_H
|
||
|
#define BOARD_CONFIG_H
|
||
|
|
||
|
#ifndef PWR_NO_CHANGE
|
||
|
//提供给预编译使用,定值同 power_interface.h
|
||
|
#define PWR_NO_CHANGE 0
|
||
|
#define PWR_LDO33 1
|
||
|
#define PWR_LDO15 2
|
||
|
#define PWR_DCDC15 3
|
||
|
#define PWR_DCDC15_FOR_CHARGE 4
|
||
|
#endif
|
||
|
|
||
|
|
||
|
/*
|
||
|
* 板级配置选择
|
||
|
*/
|
||
|
|
||
|
#define CONFIG_BOARD_AC632N_DEMO
|
||
|
//#define CONFIG_BOARD_AC632N_DISTRIBUTOR
|
||
|
//#define CONFIG_BOARD_AC632N_TARGET
|
||
|
// #define CONFIG_BOARD_AC6321A_DEMO
|
||
|
// #define CONFIG_BOARD_AC6323A_DEMO
|
||
|
// #define CONFIG_BOARD_AC6328A_DEMO
|
||
|
// #define CONFIG_BOARD_AC6329B_DEMO
|
||
|
// #define CONFIG_BOARD_AC6329C_DEMO
|
||
|
// #define CONFIG_BOARD_AC6329E_DEMO
|
||
|
// #define CONFIG_BOARD_AC6329F_DEMO
|
||
|
|
||
|
#include "board_ac632n_demo_cfg.h"
|
||
|
#include "board_ac6321a_demo_cfg.h"
|
||
|
#include "board_ac6323a_demo_cfg.h"
|
||
|
#include "board_ac6328a_demo_cfg.h"
|
||
|
#include "board_ac6329b_demo_cfg.h"
|
||
|
#include "board_ac6329c_demo_cfg.h"
|
||
|
#include "board_ac6329e_demo_cfg.h"
|
||
|
#include "board_ac6329f_demo_cfg.h"
|
||
|
#include "board_ac632n_distributor_cfg.h"
|
||
|
#include "board_ac632n_target_node_cfg.h"
|
||
|
#endif
|