Resolved! I'm trying to create my own GPIO API using LL library on STM32F4. When declaring GPIO port I get warning: initialization of 'long unsigned int' from 'GPIO_TypeDef *' {aka 'struct <anonymous> *'} makes integer from pointer without a cast [-Wint-conversion]
Hey, I create some enums and struct to declare specific pin settings. In .h file I create these struct and enums:typedef enum { ePin_Led_Stat=0, ePin_Led_GPS_Fix, ePin_USART1_Tx, ePin_USART1_Rx, ePin_USART2_Tx, ePin_USART2_Rx, ePin_Name_Last} ...