Question
[STM32H745I-DISCO] Is there a way to program the QSPI through VCP?
I want to be able to program the external flash via VCP. So far, I have taken the combined code from the CM4 and CM7 core, then using memory address 0x90000000, I write to the QSPI using the BSP function:
if (receiving_ext_flash) {
if (BSP_QSPI_Write(0, Buf, qspi_write_address, Len) != BSP_ERROR_NONE) {
CDC_Transmit_FS((uint8_t*)"QSPI Write Error\r\n", strlen("QSPI Write Error\r\n"));
receiving_ext_flash = 0;
return;
}
qspi_write_address += Len;
}
Has anyone tried doing something like this? I have not been able to get this to work.
Thanks!
