Question
STM32CubeIDE LoRaWAN generation of radio_conf.h
There some limitations/issues with the generation of the LoRaWAN/Target/radio_conf.h
The template radio_conf_h.ftl is hard coding key values in a way that does not preserve user set values.
The following lines are of concern:
#define XTAL_DEFAULT_CAP_VALUE ( 0x20UL )
#define TCXO_CTRL_VOLTAGE TCXO_CTRL_1_7V
#define DCDC_ENABLE ( 1UL )It would be useful if these values could be set via the IOC file or, alternatively, be protected from modification in the case of code regeneration.
Noting that the DCDDC_ENABLE value may be redundant as there is an IS_DCDC_SUPPORTED symbol in the radio_board_if.h file.
