Add C.H.I.P support#150
Conversation
This patch adds support for the CHIP (http://getchip.com) device using the CHIP_IO libraries.
Combined with CHIP support in rc-switch sui77/rc-switch#150, this uses the RPI base to make it work on the CHIP board too.
| void transmit(HighLow pulses); | ||
|
|
||
| #if not defined( RCSwitchDisableReceiving ) | ||
| static void handleInterrupt(int gpio, void* data); |
There was a problem hiding this comment.
should have #if defined(GETCHIP) around it
| void RECEIVE_ATTR RCSwitch::handleInterrupt(int gpio, void* data) { | ||
| RCSwitch::handleInterrupt(); | ||
| } | ||
|
|
There was a problem hiding this comment.
should have #if defined(GETCHIP) around it
|
Believe I fixed the issue you raised, and CHIP_IO library has had the necessary patch merged in |
|
:) That's what i was looking for. |
|
Hi there, not sure this was ever merged? Are there any outstanding issues? |
|
Hey, I'm also wondering if there is a reason this hasn't been merged in yet. Thanks! |
|
I guess it haven't been merged because the change would mainly belong to WProgram.h or maybe you could even use wiringPi on C.H.I.P |
|
Did anyone ever get this compiles, i get a number of errors. i can not find any reference fir getchip in rc-switch.h or rc-switch.cpp? cheers, |
This patch adds support for the CHIP (http://getchip.com) device using the
CHIP_IO libraries.
Note: Depends on xtacocorex/CHIP_IO#70