1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/saml21: Add DMA peripheral to init

This commit is contained in:
Koen Zandberg 2020-06-11 20:24:01 +02:00
parent 73c8911e62
commit 4ef0b85495
No known key found for this signature in database
GPG Key ID: 0895A893E6D2985B

View File

@ -284,6 +284,10 @@ void cpu_init(void)
SUPC->BOD33.bit.ENABLE=0;
#endif
#ifdef MODULE_PERIPH_DMA
/* initialize DMA streams */
dma_init();
#endif
/* initialize stdio prior to periph_init() to allow use of DEBUG() there */
stdio_init();