Wirepas SDK
config.mk
Go to the documentation of this file.
1# Mcu of the board
2MCU_FAMILY=efr
3MCU=efr32
4MCU_SUB=xg13
5MCU_MEM_VAR=pxxxf512
6
7# Which radio to use
8radio=efr32xg13
9# Radio Configuration india865
10radio_config=india865w
11mac_profile=subg
12
13# Hardware capabilities of the board
14## Is 32kHz crystal mounted on the board.
15board_hw_crystal_32k=no
16## Is DCDC used on this board.
17board_hw_dcdc=yes
18## HFXO crystal characteristics
19board_hw_hfxo_ctune=331
20## LFXO crystal characteristics
21board_hw_lfxo_ctune=32
22board_hw_lfxo_gain=1
23
24# Custom power table
25# if set, the custom power table will be set during application startup,
26# and the stack will use that instead of the default one.
27# For convenience, +12dBm power table is provided as an example.
28# - mcu/efr/efr32/hal/radio/radio_power_table_efr32xg13_12dbm.h
29# If predefined custom power table shall be used,
30# provide 'radio_power_table=12' as build parameter.
31ifneq ("$(radio_power_table)", "")
32 RADIO_CUSTOM_POWER_TABLE=mcu/efr/efr32/hal/radio/radio_power_table_efr32xg13_$(radio_power_table)dbm.h
33endif
34