diff options
author | Christopher Peplin <github@rhubarbtech.com> | 2017-04-01 16:14:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-01 16:14:03 -0400 |
commit | ca20db3dd978871bbb9f01f3c862b510c03d1dc4 (patch) | |
tree | 35ae99fbf206988aec547a019ed21d4563ab3bfc | |
parent | e506334e270d77b20c0bc259ac6c7d8c9b702b7a (diff) | |
parent | 63bda8b77981ab8dc30c553e585f4b90a5ee8237 (diff) |
Merge pull request #8 from claneys/master
Fix: wrong type not compatible with signature in
-rw-r--r-- | README.mkd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { ... } |