User Activity

Posted on July 12, 2018 at 22:23I'm developing a system that uses an STM32F4 with an eMMC from Micron.  The issue I'm having is related to the voltage levels I'm seeing on the CMD line.  When the STM32 is driving the line I see good 3.3V levels.  Ho...
Posted on February 20, 2012 at 02:31 A bit stumped on what to try next. I'm working with an SD card (2GB). I'm using the SDIO interface. The initialization sequence is failing during the change to widebus operation. Specifically it's failing inF...
Posted on January 31, 2012 at 22:53 Here is my code block for setting up the EXTI for Port B pin 0: void VFD_Busy_EXTI_Init( void ){ GPIO_InitTypeDef GPIO_InitStructure; EXTI_InitTypeDef EXTI_InitStructure; NVIC_InitTypeDef NVIC_InitS...
Posted on January 31, 2012 at 06:01I'm using the SPI TXE interrupt.  My ISR simply checks to see if there is anything more to transmit in the buffer.  If there is, it sends it, moves the buffer pointer, and returns.  If there isn't anything left to ...
Posted on January 26, 2012 at 18:17It would seem to me given the way the GPIO pins are mapped to EXTI lines, there is no way to use two pins that have the same GPIO pin number.  For example, in my case I would like to use pins A8 and B8 as separate ...