User Activity

When I generate code with CubeMX the MX_GPIO_Init code contains: /*Configure GPIO pin : PD2 */ GPIO_InitStruct.Pin = GPIO_PIN_2; GPIO_InitStruct.Mode = GPIO_MODE_ANALOG; GPIO_InitStruct.Pull = GPIO_NOPULL; HAL_GPIO_Init(GPIOD, &GPIO_InitStruct);There...
LIS2DS12 has Tap detection functionality. The ODR (output data rate) has to be >=400 Hz is stated in the datasheet. In low power mode ODR of 400 Hz en 800 Hz are supported (10 bit) resolution. Is Tap detection supported in low power mode? I cannot f...
Hi,When looking into stm32l4xx_hal_sd.c, I observed the following code:   if(hsd->SdCard.CardType != CARD_SDHC_SDXC)   {     add *= 512U;   }   /* Set Block Size for Card */   errorstate = SDMMC_CmdBlockLength(hsd->Instance, BLOCKSIZE);   if(errorsta...
By coincidence I discovered a bug in HAL_delay(). __weak void HAL_Delay(uint32_t Delay){ uint32_t tickstart = HAL_GetTick(); uint32_t wait = Delay; /* Add a period to guaranty minimum wait */ if (wait < HAL_MAX_DELAY) {   wait++; } while((HAL_GetTick...
Kudos from