We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For Quad SPI mode, the dummy bytes is 2 and the buffer of SPI data is not sufficient :
nuklear_eve/dependencies/eve_hal/EVE_HalImpl_FT9XX.c
Line 205 in 490d0f2
Proposed the implementation:
eve_assert(phost->SpiDummyBytes <= 2); uint8_t spidata[3]; spidata[0] = (addr >> 16); spidata[1] = (addr >> 8); spidata[2] = addr & 0xff; spi_open(SPIM, phost->Parameters.SpiCsPin); spi_writen(SPIM, spidata, 3); uint8_t spiDummyData[2]={ 0,0}; spi_readn(SPIM, spiDummyData, phost->SpiDummyBytes); phost->Status = EVE_STATUS_READING;
The text was updated successfully, but these errors were encountered:
kaetemi
No branches or pull requests
For Quad SPI mode, the dummy bytes is 2 and the buffer of SPI data is not sufficient :
nuklear_eve/dependencies/eve_hal/EVE_HalImpl_FT9XX.c
Line 205 in 490d0f2
Proposed the implementation:
The text was updated successfully, but these errors were encountered: