Merge pull request #9321 from jeromecoutant/PR_QSPI

STM32 : typo error in QSPI
pull/9323/merge
Martin Kojtal 2019-01-11 14:05:51 +00:00 committed by GitHub
commit 919dba535b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;