From 03fcf438c4f41cda21beb235f8d500975e88f004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20Buga?= Date: Thu, 21 Nov 2024 11:16:53 +0100 Subject: [PATCH] Update lcd_cam test --- hil-test/tests/lcd_cam.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hil-test/tests/lcd_cam.rs b/hil-test/tests/lcd_cam.rs index 647e4559b52..3283aad3865 100644 --- a/hil-test/tests/lcd_cam.rs +++ b/hil-test/tests/lcd_cam.rs @@ -1,7 +1,6 @@ //! LCD_CAM Camera and DPI tests //% CHIPS: esp32s3 -//% FEATURES: defmt #![no_std] #![no_main] @@ -59,7 +58,7 @@ mod tests { let dma = Dma::new(peripherals.DMA); let lcd_cam = LcdCam::new(peripherals.LCD_CAM); - let channel = dma.channel2.configure(false, DmaPriority::Priority0); + let channel = dma.channel2; let (vsync_in, vsync_out) = peripherals.GPIO6.split(); let (hsync_in, hsync_out) = peripherals.GPIO7.split();