Fixed bug #1134.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13913 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
59c91af316
commit
590384cdb4
|
@ -416,8 +416,8 @@ void cry_lld_start(CRYDriver *cryp) {
|
|||
dmaStreamSetFIFO(cryp->cryp_dma_in, STM32_DMA_FCR_DMDIS);
|
||||
dmaStreamSetFIFO(cryp->cryp_dma_out, STM32_DMA_FCR_DMDIS);
|
||||
#if STM32_DMA_SUPPORTS_DMAMUX
|
||||
dmaSetRequestSource(cryp->dma_cryp_in, STM32_DMAMUX1_CRYP_IN);
|
||||
dmaSetRequestSource(cryp->dma_cryp_out, STM32_DMAMUX1_CRYP_OUT);
|
||||
dmaSetRequestSource(cryp->cryp_dma_in, STM32_DMAMUX1_CRYP_IN);
|
||||
dmaSetRequestSource(cryp->cryp_dma_out, STM32_DMAMUX1_CRYP_OUT);
|
||||
#endif
|
||||
#endif /* STM32_CRY_CRYP_SIZE_THRESHOLD != 0 */
|
||||
rccEnableCRYP(true);
|
||||
|
|
|
@ -123,6 +123,8 @@
|
|||
MEMS Accelerometers.
|
||||
- NEW: Safer messages mechanism for sandboxes (to be backported to 20.3.1).
|
||||
- NEW: Added latency measurement test application.
|
||||
- FIX: Fixed compile error of STM32 CRYPv1 driver when DMAMU is present
|
||||
(bug #1134)(backported to 20.3.3).
|
||||
- FIX: Fixed moved define into hal_wspi_lld.c (bug #1133)
|
||||
(backported to 20.3.3).
|
||||
- FIX: Fixed various bugs in MDMAv1 driver (bug #1132)
|
||||
|
|
Loading…
Reference in New Issue