diff options
author | Bdale Garbee <bdale@gag.com> | 2016-07-04 23:47:24 +0200 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2016-07-04 23:47:24 +0200 |
commit | 2e26d1ab42163988dc26b06b016c3b05efe17659 (patch) | |
tree | 5736db47fa979abb0e37b0fc3b956cd6cdbe9405 /src/stm/stm32l.h | |
parent | 639e461ded29a48c155afea12171cbfc191ccfd7 (diff) | |
parent | 65ed2f588ca596fe9aa559bebd590a2a11b9859b (diff) |
Merge branch 'master' into branch-1.6
Diffstat (limited to 'src/stm/stm32l.h')
-rw-r--r-- | src/stm/stm32l.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stm/stm32l.h b/src/stm/stm32l.h index 0b6b2798..352214ff 100644 --- a/src/stm/stm32l.h +++ b/src/stm/stm32l.h @@ -1359,10 +1359,13 @@ extern struct stm_spi stm_spi1, stm_spi2, stm_spi3; #define STM_SPI_CR2_TXDMAEN 1 #define STM_SPI_CR2_RXDMAEN 0 +#define STM_SPI_SR_FRE 8 #define STM_SPI_SR_BSY 7 #define STM_SPI_SR_OVR 6 #define STM_SPI_SR_MODF 5 #define STM_SPI_SR_CRCERR 4 +#define STM_SPI_SR_UDR 3 +#define STM_SPI_SR_CHSIDE 2 #define STM_SPI_SR_TXE 1 #define STM_SPI_SR_RXNE 0 |