User Activity

Posted on September 09, 2015 at 14:17When using CubeMX to generate project (e.g. for SW4STM32), the code for SD Card looks like this:void MX_SDIO_SD_Init(void){  hsd.Instance = SDIO;  hsd.Init.ClockEdge = SDIO_CLOCK_EDGE_RISING;  hsd.Init.ClockBypas...
Posted on September 09, 2015 at 14:12In the HAL Code the Capacity is calculated differently for Low Speed and High Speed Cards.Low Speed cards use this code:pCardInfo->CardCapacity  = (pCardInfo->SD_csd.DeviceSize + 1) ;    pCardInfo->CardCapacity *...
Posted on August 18, 2015 at 20:19 Hi, I am using generated code from CubeMX. Here you can specify the clock divider.: The generated code looks like this: void MX_SDIO_SD_Init(void){hsd.Instance = SDIO;hsd.Init.C...
Posted on August 14, 2015 at 22:39Hello,I wrote my own USB Library / Device Driver ( https://gitlab.ibr.cs.tu-bs.de/stm32/generic_usb_driver/ ) to support more than one endpoint for my application and to be able to have better control of data etc.I ...
Posted on August 14, 2015 at 22:23I have been writing my own USB driver. While debugging an issue with the receive buffer/receive fifo I came across this issue.I am using an STM32F205VCT processor with an external HS Phy (USB3300). The function HAL_...