From 9d1d9675879f1f38be261a3d2f51ef09127eb62b Mon Sep 17 00:00:00 2001 From: jeromecoutant Date: Thu, 10 Jan 2019 10:06:17 +0100 Subject: [PATCH] STM32 : typo error in QSPI --- targets/TARGET_STM/qspi_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/TARGET_STM/qspi_api.c b/targets/TARGET_STM/qspi_api.c index 937dee12d5..eb6551e1ad 100644 --- a/targets/TARGET_STM/qspi_api.c +++ b/targets/TARGET_STM/qspi_api.c @@ -57,7 +57,7 @@ void qspi_prepare_command(const qspi_command_t *command, QSPI_CommandTypeDef *st } st_command->Instruction = command->instruction.value; - st_command->DummyCycles = command->dummy_count, + st_command->DummyCycles = command->dummy_count; // these are target specific settings, use default values st_command->SIOOMode = QSPI_SIOO_INST_EVERY_CMD; st_command->DdrMode = QSPI_DDR_MODE_DISABLE;