User Activity

Posted on September 12, 2017 at 13:03Hi,i'm using Nucleo STM32L053R8 board. How can i read single ADC channel selecting manually avery oneof the 2 channel anabled?Thanks
Posted on August 25, 2017 at 16:34Hi,i'm using stm32 nucleo board. The oscillator is configured to 32MHz speed.Now, if i use the easy following code in the main:while(1){   HAL_GPIO_WritePin(LD2_GPIO_Port, LD2_Pin, 1);    HAL_GPIO_WritePin(LD2_GPIO_...
Posted on July 31, 2017 at 15:40Hi,I have a Nucleo L053R8, I need of delay of 2 microseconds, but HAL_Delay_Microsecond in NucleoWorkspace not exist.I changed:    HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);in    HAL_SYSTICK_Config(HAL_RCC_GetHC...
Posted on July 20, 2017 at 15:38Hi,i've a little problem with stm32L0.I want change state with button B1, but HAL_DELAY is priority of button. the mian is:uint8_t stato; stato = 0;while (1) {switch(stato) { case 0: HAL_GPIO_WritePin(LD2_GPIO_Port, L...