STM32_WPAN not possible to build without adv_trace and UART peripheral enabled
I'm trying to configure and generate a project with STM32CubeMX for the STM32WBA5MMGHx BLE module.
When enabling the STM32_WPAN middleware, the ADV_TRACE module gets automatically enabled under Utilities. This in turn requires to enable at least one UART/LPUART peripheral, otherwise type UART_HandleTypeDef is undefined and compiler throws and error:
../../Core/Inc/app_conf.h:304:8: error: unknown type name 'UART_HandleTypeDef'; did you mean 'RTC_HandleTypeDef'?
[build] 304 | extern UART_HandleTypeDef huart1;
[build] | ^~~~~~~~~~~~~~~~~~
[build] | RTC_HandleTypeDefThe STM32_WPAN throws a warning about not configured/wrong Platform Settings.
Is there any possibility to configure STM32_WPAN without ADV_TRACE enabled?
Used STM32CubeMX version is 6.17.0 and WBA firmware v1.19.0 and cmake project is generated.
