Add test suite using python-can for testing Controller Area Network (CAN) communication between a host PC and a device under test running Zephyr. Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
20 lines
211 B
Plaintext
20 lines
211 B
Plaintext
/*
|
|
* Copyright 2024 Vestas Wind Systems A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,canbus = &can0;
|
|
};
|
|
};
|
|
|
|
&can_loopback0 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&can0 {
|
|
status = "okay";
|
|
};
|