tests: udc: get UDC driver skeleton tested on native_posix_64

Get UDC driver skeleton tested on native_posix_64.

Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
This commit is contained in:
Johann Fischer 2023-05-03 18:16:16 +02:00 committed by Carles Cufí
parent 1a30cd8f1c
commit 489f4acd68
3 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1 @@
CONFIG_UDC_BUF_POOL_SIZE=32768

View file

@ -0,0 +1,15 @@
/*
* Copyright (c) 2023 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/delete-node/ &zephyr_udc0;
/ {
zephyr_udc0: udc_skeleton0 {
compatible = "zephyr,udc-skeleton";
num-bidir-endpoints = <8>;
maximum-speed = "high-speed";
};
};

View file

@ -3,4 +3,6 @@ tests:
tags:
- usb
- drivers
platform_allow: nrf52840dk_nrf52840
platform_allow:
- nrf52840dk_nrf52840
- native_posix_64