git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12944 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-08-11 06:28:28 +00:00
parent c3e5b5ca23
commit 723ec71674
2 changed files with 3 additions and 0 deletions

View File

@ -330,6 +330,7 @@ void wspi_lld_map_flash(WSPIDriver *wspip,
wspip->qspi->ABR = 0;
wspip->qspi->AR = 0;
wspip->qspi->CCR = cmdp->cmd | cmdp->cfg |
QUADSPI_CCR_DUMMY_CYCLES(cmdp->dummy) |
QUADSPI_CCR_FMODE_1 | QUADSPI_CCR_FMODE_0;
/* Mapped flash absolute base address.*/

View File

@ -107,6 +107,8 @@
- HAL: Added a new interface for range-finder devices (used by EX).
- HAL: Added mcuconf.h updater tool for STM32F407 (backported to 19.1.1).
- NIL: Integrated NIL 4.0.
- FIX: Fixed missing dummy cycles in memory map mode on STM32 QSPI driver
(bug #1042)(backported to 19.1.4).
- FIX: Fixed missing DMA definitions for STM32F412 I2C3 (bug #1041)
(backported to 19.1.4)(backported to 18.2.3).
- FIX: Fixed misplaced parenthesis in hal_files.h (bug #1040)