Wirepas SDK
config.mk
Go to the documentation of this file.
1 # Mcu of the board
2 MCU_FAMILY=nrf
3 MCU=nrf52
4 MCU_SUB=840
5 
6 # Hardware capabilities of the board
7 ## Is 32kHz crystal mounted on the board.
8 board_hw_crystal_32k=yes
9 ## Is DCDC used on this board.
10 board_hw_dcdc=yes
11 
12 # Set path to custom power table here, if set, the custom power
13 # table will be set during application startup, and the stack will use that
14 # instead of the default.
15 # For convenience, an example of a +4dBm power table is provided, uncomment the
16 # line below or use radio_power_table=4 setting as make argument to use that
17 # instead of the default +8dBm power table.
18 #RADIO_CUSTOM_POWER_TABLE=mcu/nrf/nrf52/hal/radio/radio_power_table_nrf52840_4dBm.h
19 ifneq ("$(radio_power_table)", "")
20  RADIO_CUSTOM_POWER_TABLE=mcu/nrf/nrf52/hal/radio/radio_power_table_nrf52840_$(radio_power_table)dBm.h
21 endif