Add port D to LQFP64

This commit is contained in:
Lucian Copeland 2020-06-16 12:33:15 -04:00
parent b3b38c18c5
commit fd4aafacbe

View File

@ -46,8 +46,8 @@ bool neopixel_in_use;
#define GPIO_PORT_COUNT 5 #define GPIO_PORT_COUNT 5
GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE}; GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC, GPIOD, GPIOE};
#elif defined(LQFP64) #elif defined(LQFP64)
#define GPIO_PORT_COUNT 3 #define GPIO_PORT_COUNT 4
GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC}; GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC, GPIOD};
#elif defined(UFQFPN48) #elif defined(UFQFPN48)
#define GPIO_PORT_COUNT 3 #define GPIO_PORT_COUNT 3
GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC}; GPIO_TypeDef * ports[GPIO_PORT_COUNT] = {GPIOA, GPIOB, GPIOC};