From 0c749626eb3b08a7921a495361ec39bfa177cd47 Mon Sep 17 00:00:00 2001 From: dario Date: Wed, 15 May 2024 13:06:20 +0200 Subject: [PATCH] Updated comments and one delay --- include/sta/drivers/w25qxx.hpp | 4 ++-- src/w25qxx.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sta/drivers/w25qxx.hpp b/include/sta/drivers/w25qxx.hpp index eff2ca5..9c40ffe 100644 --- a/include/sta/drivers/w25qxx.hpp +++ b/include/sta/drivers/w25qxx.hpp @@ -86,14 +86,14 @@ namespace sta AddressMode getAddressMode(); /** - * @brief Get the Chip I D object + * @brief Get the chip ID * * @return uint8_t */ uint8_t getChipID(); /** - * @brief Get the Manufacturer I D object + * @brief Get the flash chip's manufacturer ID. * * @return uint8_t */ diff --git a/src/w25qxx.cpp b/src/w25qxx.cpp index 7acfaa1..828d78a 100644 --- a/src/w25qxx.cpp +++ b/src/w25qxx.cpp @@ -19,7 +19,7 @@ namespace sta uint8_t W25Qxx::init() { powerDown(); - delay_(3); + delay_(5); if (!releasePowerDown()) {