Question
Bug: Pins with similar labels get same label in code
I named one pin aLoadcell- and another aLoadcell+ in STM32CubeMx (v6.6.1). They both got the same C #define in the code, as both the '-' and the '+' were replaced by a '_'.
#define aLoadCell__Pin GPIO_PIN_2
#define aLoadCell__GPIO_Port GPIOC
#define aLoadcell__Pin GPIO_PIN_3
#define aLoadcell__GPIO_Port GPIOCSTM32CubeMx should check on uniqueness of all (pin) labels.
