User Activity

Posted on July 14, 2016 at 14:16Hello Mayla,here are some examples:*  If there is a function that can not fail, please use void as return type:„HAL_StatusTypeDef HAL_DeInit(void)'' should be „void HAL_DeInit(void)“. If the software does not contain ...
Posted on June 21, 2016 at 10:20Hello,while I'm trying to figure out, why a project with USB support is not working as expected, I have to debug a lot in the HAL source code.Nearly all HAL functions have a HAL_StatusTypeDef as return type. I check t...
Posted on April 22, 2016 at 12:31Hi,I need to implement an existing circa algorithm [1]. I have a table driven C implementation, but I would like to use the STM32L4 CRC peripheral. I�ve read the chapter in the reference manual, and I know which para...
Posted on April 08, 2016 at 15:11Hello,while writing a bootloader, I had the need for a few bytes (4) that retain the content during a software reset. I�ve read that is true for the first bytes of the SRAM. So I�ve added a new section at the beginni...
Posted on March 26, 2016 at 16:57Hello,I could use some help. I have to implement a USB Mass Storage device on a STM32L476. The final hardware is not ready jet, so I started by using a stm32476RG Nucleo board. I�ve started with the MSC_Standalone ex...