From 4693c2e0d9c72d98d4f94e0d756c85e0c1d6cbd5 Mon Sep 17 00:00:00 2001 From: Arthur Guyader Date: Mon, 26 Aug 2019 16:48:28 +0200 Subject: Update function to encode and decode message This commit update encoder and decoder files. This new implementation allows to manage larger signals. Bug-AGL : SPEC-2779 Change-Id: Iec6dfbd279863aa8b8e8f9e3ce951f0c8aa80dae Signed-off-by: Arthur Guyader --- low-can-binding/binding/low-can-cb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'low-can-binding/binding') diff --git a/low-can-binding/binding/low-can-cb.cpp b/low-can-binding/binding/low-can-cb.cpp index ad9543d9..737a851a 100644 --- a/low-can-binding/binding/low-can-cb.cpp +++ b/low-can-binding/binding/low-can-cb.cpp @@ -669,7 +669,7 @@ static void write_signal(afb_req_t request, const std::string& name, json_object } // cfd = encoder_t::build_frame(sig, value); - message_t *message = encoder_t::build_message(sig,value); + message_t *message = encoder_t::build_message(sig,value,false,false); if(! send_message(message, sig->get_message()->get_bus_device_name(), type) && send) { -- cgit 1.2.3-korg