any idea why it is freezing executing *mem_addr = aTxBuffer[index];
I have this code it transfers to 0x90000000 (OSPI) data
__IO uint8_t *mem_addr;
/* USER CODE BEGIN 2 */
HAL_OSPI_MemoryMapped(&hospi1, &sMemMappedCfg)
mem_addr = (uint8_t *)(OCTOSPI1_BASE + address);
for (index = 0; index < BUFFERSIZE; index++)
{
*mem_addr = aTxBuffer[index];
mem_addr++;
}
it compiles and runs fine but freezes on *mem_addr = aTxBuffer[index];
has anybody seen something like this ?
