diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-11-02 15:58:45 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-14 11:00:25 +0100 |
commit | 6ee4db6878464642ddf9f0909748841a45b58a88 (patch) | |
tree | 4c3588d216e903174f1281b757e98816d7323afa /plugins/gps.c | |
parent | ed2c3d0267e3c5e1392635dacad2752de935d6b4 (diff) |
Migrate to ctl-utilities library
New version of controller as a library. Loading additionnals
files from each sections.
Change-Id: I4f5e78d0baf9650cb8d1cc1da26f8e1fd73b792c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'plugins/gps.c')
-rw-r--r-- | plugins/gps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/gps.c b/plugins/gps.c index 39b1f49..2aab040 100644 --- a/plugins/gps.c +++ b/plugins/gps.c @@ -28,15 +28,15 @@ #include "ctl-plugin.h" #include "wrap-json.h" -CTLP_REGISTER("gps"); +CTLP_LUA_REGISTER("gps"); // Call at initialisation time CTLP_ONLOAD(plugin, api) { - AFB_NOTICE ("GPS plugin: label='%s' version='%s' info='%s'", plugin->label, plugin->version, plugin->info); + AFB_NOTICE ("GPS plugin: uid='%s' 'info='%s'", plugin->uid, plugin->info); return api; } -CTLP_CAPI (subscribeToLow, source, argsJ, eventJ, context) { +CTLP_CAPI (subscribeToLow, source, argsJ, eventJ) { json_object* subscribeArgsJ = NULL, *responseJ = NULL; int err = 0; |