From 5eef66888b303d849eacf39014dbce4fc5735cf4 Mon Sep 17 00:00:00 2001 From: dean Date: Thu, 1 Nov 2018 11:07:37 -0400 Subject: [PATCH] DM: docs fixes --- Adafruit_QSPI.cpp | 1 + Adafruit_QSPI_Generic.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Adafruit_QSPI.cpp b/Adafruit_QSPI.cpp index eab84ed..57d00a0 100644 --- a/Adafruit_QSPI.cpp +++ b/Adafruit_QSPI.cpp @@ -64,6 +64,7 @@ void Adafruit_QSPI::begin() { @param txData pointer to the data to be written. @param rxData pointer to where read data should be stored. @param size the number of bytes to read. + @param invalidateCache manual cache management. Only use this parameter if you know what you're doing. Defaults to true. */ /**************************************************************************/ void Adafruit_QSPI::runInstruction(const QSPIInstr *instr, uint32_t addr, uint8_t *txData, uint8_t *rxData, uint32_t size, bool invalidateCache) diff --git a/Adafruit_QSPI_Generic.cpp b/Adafruit_QSPI_Generic.cpp index 92c312d..d3ae936 100644 --- a/Adafruit_QSPI_Generic.cpp +++ b/Adafruit_QSPI_Generic.cpp @@ -217,6 +217,7 @@ byte Adafruit_QSPI_Generic::read8(uint32_t addr) @param addr the address to read from @param data the pointer to where the read data will be stored @param size the number of bytes to read + @param invalidateCache manual cache management. Only use this parameter if you know what you're doing. Defaults to true. @returns true */ /**************************************************************************/