User Activity

Current settings seem to only produce 0x000 to 0x7FF . The HAL API on the STM32L0 only has 2 Parameters in the ADC ChannelConf Type:typedef struct{ uint32_t Channel;    uint32_t Rank;         }ADC_ChannelConfTypeDef;Which is Clearly missing the : ...
Posted on June 03, 2018 at 16:07static void EXTILine0_1_Config(void){ GPIO_InitTypeDef GPIO_InitStructure;/* Enable GPIOC clock */ __HAL_RCC_GPIOA_CLK_ENABLE(); /* Configure PA0 pin as input floating */ GPIO_InitStructure.Mode = GPIO_MODE_IT_FALLIN...
Kudos from