diff options
author | tkummermehr <thorsten.kummermehr@k2l.de> | 2017-11-07 22:16:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 22:16:46 +0100 |
commit | d51b0e0b7ef6dab5bc938a6bfea630426108b4d8 (patch) | |
tree | 441669f0825daceea8acaeef93886e212f771543 /ucs2-afb | |
parent | 81e5dad8294f20c3cb69383d0a6e8b04c3579094 (diff) | |
parent | 70d2be4379f3075d9c004b82cbb01a9f312cd0c3 (diff) |
Merge pull request #21 from tkummermehr/EnhanceXmlParser
Merge with current development (UNICENSd)
Diffstat (limited to 'ucs2-afb')
-rw-r--r-- | ucs2-afb/ucs_binding.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ucs2-afb/ucs_binding.c b/ucs2-afb/ucs_binding.c index ee1bce6..e1451a0 100644 --- a/ucs2-afb/ucs_binding.c +++ b/ucs2-afb/ucs_binding.c @@ -107,6 +107,10 @@ STATIC int onTimerCB (sd_event_source* source,uint64_t timer, void* pTag) { return 0; } +void UCSI_CB_OnNetworkState(void *pTag, bool isAvailable, uint16_t packetBandwidth, uint8_t amountOfNodes) +{ +} + /* UCS2 Interface Timer Callback */ PUBLIC void UCSI_CB_OnSetServiceTimer(void *pTag, uint16_t timeout) { uint64_t usec; @@ -197,7 +201,7 @@ void UCSI_CB_OnAmsMessageReceived(void *pTag) Don't forget to call UCSI_ReleaseAmsMessage after that */ } -void UCSI_CB_OnRouteResult(void *pTag, uint16_t routeId, bool isActive) +void UCSI_CB_OnRouteResult(void *pTag, uint16_t routeId, bool isActive, uint16_t connectionLabel) { } |