tests: drivers: dma: enable tests on nucleo_f070rb
This patch enables the DMA chan_blen_transfer and loop_transfer tests on the nucleo_f070rb board. Signed-off-by: Simon Guinot <simon.guinot@seagate.com>
This commit is contained in:
parent
1945f70eee
commit
54d3f136ec
|
@ -12,6 +12,7 @@ supported:
|
|||
- arduino_gpio
|
||||
- arduino_i2c
|
||||
- arduino_spi
|
||||
- dma
|
||||
- gpio
|
||||
- i2c
|
||||
- spi
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
CONFIG_DMA_TRANSFER_DRV_NAME="DMA_1"
|
||||
CONFIG_DMA_TRANSFER_CHANNEL_NR_0=1
|
||||
CONFIG_DMA_TRANSFER_CHANNEL_NR_1=2
|
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
* Copyright (c) 2021 Seagate Technology LLC
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
&dma1 {
|
||||
status = "okay";
|
||||
};
|
|
@ -0,0 +1,2 @@
|
|||
CONFIG_DMA_LOOP_TRANSFER_DRV_NAME="DMA_1"
|
||||
CONFIG_DMA_LOOP_TRANSFER_CHANNEL_NR=1
|
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
* Copyright (c) 2021 Seagate Technology LLC
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
&dma1 {
|
||||
status = "okay";
|
||||
};
|
Loading…
Reference in a new issue