Wirepas SDK
config.mk
Go to the documentation of this file.
1 # Mcu of the board
2 MCU_FAMILY=efr
3 MCU=efr32
4 MCU_SUB=xg12
5 MCU_MEM_VAR=pxxxf1024
6 
7 # Hardware capabilities of the board
8 ## Is 32kHz crystal mounted on the board.
9 board_hw_crystal_32k=yes
10 ## Is DCDC used on this board.
11 board_hw_dcdc=yes
12 ## HFXO crystal characteristics
13 board_hw_hfxo_ctune=322
14 ## LFXO crystal characteristics
15 board_hw_lfxo_ctune=68
16 board_hw_lfxo_gain=2
17 
18 # Set path to custom power table here, if set, the custom power
19 # table will be set during application startup, and the stack will use that
20 # instead of the default.
21 # For convenience, an example of a +19dBm power table is provided, uncomment the
22 # line below or use radio_power_table=19 setting as make argument to use that
23 # instead of the default +8dBm power table.
24 # NOTE! +19 dBm power level is usable only where US FCC regulation applies
25 #RADIO_CUSTOM_POWER_TABLE=mcu/efr/efr32/hal/radio/radio_power_table_efr32xg12_19dBm.h
26 ifneq ("$(radio_power_table)", "")
27  RADIO_CUSTOM_POWER_TABLE=mcu/efr/efr32/hal/radio/radio_power_table_efr32xg12_$(radio_power_table)dbm.h
28 endif