diff options
author | tjahnk <tjahnk@users.noreply.github.com> | 2017-07-27 10:55:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-27 10:55:47 +0200 |
commit | 4d190f69cc90143c4de1b0d474cbf552fa165b78 (patch) | |
tree | f03139fa7dd9a791bb17a897d29e176bd9ee85d8 /ucs2-afb | |
parent | cccb9d85b0e94a9716e82aa055beb101c4de8781 (diff) | |
parent | b472aba95f7fbbfd61e9b8830dd30a4fe73af86f (diff) |
Merge pull request #14 from tkummermehr/I2C_and_GPIO_Support
Implement handling of GPIO, I2C, Routes
Diffstat (limited to 'ucs2-afb')
-rw-r--r-- | ucs2-afb/ucs_binding.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ucs2-afb/ucs_binding.c b/ucs2-afb/ucs_binding.c index 1c318fa..c0a9fcf 100644 --- a/ucs2-afb/ucs_binding.c +++ b/ucs2-afb/ucs_binding.c @@ -193,6 +193,14 @@ 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_OnGpioStateChange(void *pTag, uint16_t nodeAddress, uint8_t gpioPinId, bool isHighState) +{ +} + bool Cdev_Init(CdevData_t *d, const char *fileName, bool read, bool write) { if (NULL == d || NULL == fileName) goto OnErrorExit; |