The QSPI/CSN can't be hight,when it read data with XIP.

    uint32_t address = XIP_ADDRESS + addr;
    uint8_t *p_data = (uint8_t *)address;
    for (int i = 0; i < len; i++)
    {
        data[i] = p_data[i];
    }

The Pin of QSPI/CSN is low after it read the data with XIP.

Related