HelloI'm working on the implementation of a UF2 bootloader for the STM32H743ZI, and I get an issue with the flash that goes into "Inconsistency error" during second word write.I have properly erased the flash sector before the write.Here is the funct...
I got an STM32H745I-DISCO board and am trying to get a program started with the TOUCHFX component, but I noticed that all the components are not available because "This pack cannot be used on the selected MCU".Is there a way to make it work? Is it a ...
Posted on August 06, 2015 at 21:18Hello,I am trying to write my own driver for the FT5336 touchscreen driver for the STM32F7 Discovery board, but I could find a good (english) datasheet for it. The only thing I have for reference is the driver avail...
Posted on July 10, 2015 at 18:03
Hello,
I received my STM32F746G-DISCO board 2 days ago, and I am trying to get the TFT-LCD module work, but I am having difficulties with the configuration of the FMC.I am struggling with the timing config...
Fair enough on the cast, I could just keep it as a void *.The real issue is that I forgot that the FLASH_PROG_SIZE was in 32bits words, not 8 bits, so it was a simple fix:for(uint32_t i = 0; i < len; i += FLASH_PROG_SIZE * 4)Now it works well in debu...
Posted on July 10, 2015 at 23:01Ok, so I basically copies the function BSP_SDRAM_Initialization_Sequence(&hsdram, &command); and that did the trick.There was way more things to configure!I will try to use the TFT-LCD now, but with the original progr...
Posted on July 10, 2015 at 22:10Thanks for the tip, I actually didn't see this file -_-'However, it seems that (in debug mode, with uVision) it manages to write in few memory locations before failing. My guess is that the FIFO might be filling up to...