diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-19 14:09:59 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-23 16:12:13 +0000 |
commit | 55673d50338f041763e6e38f38ea3fc311f2bdc1 (patch) | |
tree | 9187738d00354dd3d33f62f9f5114c7704a28d42 /conf.d/controller/lua.d/mapi_low-can.lua | |
parent | f80ab1e0739a5e8694537c4d44b5ab568fa235b4 (diff) |
Add simple tests about waiting a group of events.flounder_5.99.2flounder/5.99.25.99.2
Change-Id: I409f8a07806f613e74cf86d6d001f7762eab7f96
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'conf.d/controller/lua.d/mapi_low-can.lua')
-rw-r--r-- | conf.d/controller/lua.d/mapi_low-can.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/conf.d/controller/lua.d/mapi_low-can.lua b/conf.d/controller/lua.d/mapi_low-can.lua index f7cd99a..9909492 100644 --- a/conf.d/controller/lua.d/mapi_low-can.lua +++ b/conf.d/controller/lua.d/mapi_low-can.lua @@ -27,6 +27,14 @@ function _unsubscribe(source, args) end function _get(source, args) + local evtHandle1 = AFB:evtmake(source, 'messages_engine_speed') + local evtHandle2 = AFB:evtmake(source, 'messages_vehicle_speed') + if type(evtHandle1) == "userdata" and type(evtHandle2) == "userdata" then + AFB:subscribe(source, evtHandle1) + AFB:evtpush(source,evtHandle1,{value = 1234}) + AFB:subscribe(source, evtHandle2) + AFB:evtpush(source,evtHandle2,{value = 5678}) + end AFB:success(source) end |