Make the fake CAN controller driver available for use in tests outside of the CAN shell test. Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
20 lines
343 B
Plaintext
20 lines
343 B
Plaintext
/*
|
|
* Copyright (c) 2022 Vestas Wind Systems A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/{
|
|
fake_can: fake_can {
|
|
compatible = "zephyr,fake-can";
|
|
status = "okay";
|
|
sjw = <1>;
|
|
sample-point = <875>;
|
|
bus-speed = <125000>;
|
|
sample-point = <875>;
|
|
sjw-data = <1>;
|
|
bus-speed-data = <1000000>;
|
|
sample-point-data = <750>;
|
|
};
|
|
};
|