From 8a16a8bd041f6aad5f1288017127fab9da753dbd Mon Sep 17 00:00:00 2001 From: Niek Ilmer Date: Mon, 20 Oct 2025 14:37:13 +0200 Subject: [PATCH] Add wake up command --- ezFlashCLI/ezFlash/smartbond/smartbondDevices.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ezFlashCLI/ezFlash/smartbond/smartbondDevices.py b/ezFlashCLI/ezFlash/smartbond/smartbondDevices.py index fa0cb19..848a877 100644 --- a/ezFlashCLI/ezFlash/smartbond/smartbondDevices.py +++ b/ezFlashCLI/ezFlash/smartbond/smartbondDevices.py @@ -284,6 +284,9 @@ def flash_probe(self): # read JEADEC id self.spi_set_bitmode(self.SPI_MODE_8BIT) self.spi_cs_low() + self.spi_access8(HW_QSPI_COMMON_CMD.RELEASE_POWER_DOWN) + self.spi_cs_high() + self.spi_cs_low() self.spi_access8(HW_QSPI_COMMON_CMD.READ_JEDEC_ID) manufacturer = self.spi_access8(0xFF) deviceId = self.spi_access8(0xFF)