Resolved! STM32F746G-Discovery SDRAM Curious Behavior
Posted on March 16, 2018 at 19:50 I'm writing a crude memory diagnostic for SDRAM (just to see if I can). The code accesses SDRAM using a pointer. __IO uint32_t * SDRAM_ptr; SDRAM_ptr = (__IO uint32_t *)0xC0000000; Using this pointer in a loo...