Update struct to follow af-binder changes.
authorRomain Forlot <romain.forlot@iot.bzh>
Fri, 7 Jul 2017 15:32:07 +0000 (17:32 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Fri, 7 Jul 2017 15:32:07 +0000 (17:32 +0200)
Added an info fields in struct.

Change-Id: I93165911c1ceb62c9893fa1c4635088f0df36b3f
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
low-can-binding/binding/low-can-hat.cpp

index fc6f9b5..6709089 100644 (file)
@@ -34,14 +34,15 @@ extern "C"
 
        static const struct afb_verb_v2 verbs[]=
        {
-               { .verb= "subscribe", .callback= subscribe, .auth= NULL, .session= AFB_SESSION_NONE},
-               { .verb= "unsubscribe", .callback= unsubscribe, .auth= NULL, .session= AFB_SESSION_NONE},
-               { .verb= NULL, .callback= NULL, .auth= NULL, .session= 0}
+               { .verb= "subscribe", .callback= subscribe, .auth= NULL, .info="Let subscribe to signals", .session= AFB_SESSION_NONE},
+               { .verb= "unsubscribe", .callback= unsubscribe, .auth= NULL, .info="Let unsubscribe signals", .session= AFB_SESSION_NONE},
+               { .verb= NULL, .callback= NULL, .auth= NULL, .info=NULL, .session= 0}
        };
 
        const struct afb_binding_v2 afbBindingV2 {
                .api = "low-can",
                .specification = NULL,
+               .info = "API to Low level CAN service, read and decode the bus",
                .verbs = verbs,
                .preinit = NULL,
                .init = initv2,