Inconsistent pin naming
I've always found it a little irritating:
#define CLK_A_Pin GPIO_PIN_0
#define CLK_A_GPIO_Port GPIOFWhy is it deemed necessary to have "GPIO" in one, but not the other?
Surely, that should be either:
#define CLK_A_GPIO_Pin GPIO_PIN_0
#define CLK_A_GPIO_Port GPIOF("GPIO" in both),
Or:
#define CLK_A_Pin GPIO_PIN_0
#define CLK_A_Port GPIOF("GPIO" in neither)
(There isn't a label for "suggestion" - so "bug report" is the nearest option)
