Hello!I have a W25Q128JVIQ connected to an STM32F446RE like the following:I am trying to use QuadSPI in Dual Mode, but I am having difficulties reading ANY data, like the Device ID (ABh). This is my code: W25Q_STATE W25Q_ReadID(u8_t *buf)
{
QSPI...
I managed to make it work!My code:W25Q_STATE W25Q_Init(void)
{
W25Q_STATE state; // temp status variable
// read id
u8_t id;
state = W25Q_ReadID(&id);
if (state != W25Q_OK)
return state;
u8_t id_full[3];
// stat...