diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-11-09 09:57:16 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-11-09 09:57:16 +0000 |
commit | 9472504bb695fef7f68849847ffe40dff9b0a591 (patch) | |
tree | f26590d3c6f97ef1264631726aeccdf7344819a4 /os/hal/include | |
parent | 8e0e4b064425c9c54e109191bba8bcf0775ba9ee (diff) | |
download | ChibiOS-9472504bb695fef7f68849847ffe40dff9b0a591.tar.gz ChibiOS-9472504bb695fef7f68849847ffe40dff9b0a591.tar.bz2 ChibiOS-9472504bb695fef7f68849847ffe40dff9b0a591.zip |
WSPI and flash support improvements.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12411 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/include')
-rw-r--r-- | os/hal/include/hal_wspi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/os/hal/include/hal_wspi.h b/os/hal/include/hal_wspi.h index c54c9ca2a..c3f2ac248 100644 --- a/os/hal/include/hal_wspi.h +++ b/os/hal/include/hal_wspi.h @@ -200,6 +200,11 @@ typedef struct { #define WSPI_CFG_DQS_ENABLE (1LU << 29LU)
#define WSPI_CFG_SIOO (1LU << 31LU)
+
+#define WSPI_CFG_ALL_DTR (WSPI_CFG_CMD_DTR | \
+ WSPI_CFG_ADDR_DTR | \
+ WSPI_CFG_ALT_DTR | \
+ WSPI_CFG_DATA_DTR)
/** @} */
#endif /* WSPI_USE_DEFAULT_CFG_MASKS == TRUE */
|