1/* 2 * Copyright (c) 2024 Titouan Christophe 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 usb_midi: usb_midi { 9 compatible = "zephyr,midi2-device"; 10 status = "okay"; 11 #address-cells = <1>; 12 #size-cells = <1>; 13 label = "Zephyr USB-MIDI Sample"; 14 15 midi_in_out@0 { 16 reg = <0 1>; 17 protocol = "midi1-up-to-128b"; 18 label = "MIDI-IN-OUT"; 19 }; 20 }; 21}; 22