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 uart_use_usb=yes
13 
14 # To be changed
15 usb_vid=0xf00d
16 usb_manufacturer_str="Raytac Wirepas"
17 usb_product_str="Raytac Wirepas Dongle"
18 
19 # Set path to custom power table here, if set, the custom power
20 # table will be set during application startup, and the stack will use that
21 # instead of the default.
22 # For convenience, an example of a +4dBm power table is provided, uncomment the
23 # line below or use radio_power_table=4 setting as make argument to use that
24 # instead of the default +8dBm power table.
25 #RADIO_CUSTOM_POWER_TABLE=mcu/nrf/nrf52/hal/radio/radio_power_table_nrf52840_4dBm.h
26 ifneq ("$(radio_power_table)", "")
27  RADIO_CUSTOM_POWER_TABLE=mcu/nrf/nrf52/hal/radio/radio_power_table_nrf52840_$(radio_power_table)dBm.h
28 endif