Lines Matching +full:11 +full:- +full:12
5 * SPDX-License-Identifier: Apache-2.0
32 /* CAN FD DLC, 12 to 64 data bytes in steps */ in ZTEST()
33 zassert_equal(can_dlc_to_bytes(9), 12, "wrong number of bytes for DLC 9"); in ZTEST()
35 zassert_equal(can_dlc_to_bytes(11), 20, "wrong number of bytes for DLC 11"); in ZTEST()
36 zassert_equal(can_dlc_to_bytes(12), 24, "wrong number of bytes for DLC 12"); in ZTEST()
54 /* CAN FD DLC, 12 to 64 data bytes in steps */ in ZTEST()
55 zassert_equal(can_bytes_to_dlc(12), 9, "wrong DLC for 12 bytes"); in ZTEST()
57 zassert_equal(can_bytes_to_dlc(20), 11, "wrong DLC for 20 bytes"); in ZTEST()
58 zassert_equal(can_bytes_to_dlc(24), 12, "wrong DLC for 24 bytes"); in ZTEST()
75 /* Standard (11-bit) frames and filters */ in ZTEST()
85 /* Extended (29-bit) frames and filters */ in ZTEST()
95 /* Standard (11-bit) frames and extended (29-bit) filters */ in ZTEST()
102 /* Extended (29-bit) frames and standard (11-bit) filters */ in ZTEST()