diff options
author | Eric Callahan <arksine.code@gmail.com> | 2022-04-23 06:55:10 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2022-04-25 12:02:45 -0400 |
commit | dc28257a7547d282543d011dbe1e9b513a32a8ae (patch) | |
tree | d453e6b85958804e6b0ca305464aa81f88763c85 | |
parent | ccae1e3ec8f81e92bbc10e648f0d111466b5f659 (diff) | |
download | kutter-dc28257a7547d282543d011dbe1e9b513a32a8ae.tar.gz kutter-dc28257a7547d282543d011dbe1e9b513a32a8ae.tar.xz kutter-dc28257a7547d282543d011dbe1e9b513a32a8ae.zip |
spi_flash: reduce speed to 400K
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
-rw-r--r-- | scripts/spi_flash/spi_flash.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/spi_flash/spi_flash.py b/scripts/spi_flash/spi_flash.py index e6aae54d..6bcef362 100644 --- a/scripts/spi_flash/spi_flash.py +++ b/scripts/spi_flash/spi_flash.py @@ -95,7 +95,7 @@ def check_need_convert(board_name, config): SPI_OID = 0 SPI_MODE = 0 -SD_SPI_SPEED = 4000000 +SD_SPI_SPEED = 400000 # MCU Command Constants RESET_CMD = "reset" GET_CFG_CMD = "get_config" |