User Activity

I'm looking at CubeMX's generation of the linker file (specifically an unconfigured project using the NUCLEO-H7S3L8) and I notice some discrepancies with certain memory region sizes.According to RM0477, the DCTM - RAM region begins at 0x2000_0000 and...
All I'm looking for is to just somehow set up a GDB server for the NUCELO-H7S3L8 so I can do some debugging. My other board (NUCLEO-L476RG) worked fine using openocd, but my H7 has decided to siphon my precious humanity by being insanely difficult. I...
I'm not much of an avid reader, but does this say what I think it says?When a channel x is programmed for a block transfer in memory-to-memory mode, rearbitration is considered between each single DMA transfer of this channel x. Whenever there is ano...
Today I started to implement DMA for the SDMMC peripheral, and it worked for the most part, but when I got around to doing some sector writes, I started to get CRC-16 mismatches. This was a relatively simple fix, as I was enabling the Data Path State...
Today I decided to improve the performance of my USB driver by transferring multiple IN packets at a time, instead of one at a time. This in theory would be relatively easy, as I can just configure the IN endpoint's TX-FIFO to have a larger allocatio...