From 63bda8b77981ab8dc30c553e585f4b90a5ee8237 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 9 Mar 2017 10:02:17 +0100 Subject: Fix: wrong type not compatible with signature in isotp-c libs. Change-Id: Ie5709e5c0b7f25c4a1eab876a695c2d24f7fe936 Signed-off-by: Romain Forlot --- README.mkd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.mkd b/README.mkd index 8f9574fc..aa0d7fd7 100644 --- a/README.mkd +++ b/README.mkd @@ -19,7 +19,7 @@ system: // required, this must send a single CAN message with the given arbitration // ID (i.e. the CAN message ID) and data. The size will never be more than 8 // bytes. - bool send_can(const uint16_t arbitration_id, const uint8_t* data, + bool send_can(const uint32_t arbitration_id, const uint8_t* data, const uint8_t size) { ... } -- cgit 1.2.3-korg