diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-09-17 19:20:40 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-14 11:00:25 +0100 |
commit | 12097251ec058b1fa9d9202998c829b27ee5554f (patch) | |
tree | 415d2592913bfa0b980232ffbee09d6cfb48fd02 /plugins/low-can.c | |
parent | 5bbc6cb56995d23cb8a4eb584ef0161be092da1f (diff) |
Get CPP controller plugin works
Context passing variables not working well
Change-Id: Ibc67bef353e5cc2e53ef9e5579d106baab92a604
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'plugins/low-can.c')
-rw-r--r-- | plugins/low-can.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/low-can.c b/plugins/low-can.c index 1c2ad74..86f0f5c 100644 --- a/plugins/low-can.c +++ b/plugins/low-can.c @@ -68,7 +68,7 @@ CTLP_CAPI (subscribeToLow, source, argsJ, eventJ, context) { return err; } - if(frequency >= 0) + if(frequency > 0) { wrap_json_pack(&subscribeFilterJ, "{sf}", "frequency", frequency); } |