Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pigpio_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ static inline int hw_getInterruptPin() {

static inline void hw_callInterrupt(uint32_t tick) {
_lastmic = tick;
_hw_interruptCallback();
/* Avoid calling NULL pointer because gpioSetAlertFunc()
* is called in rfcontrol_command_receive() before this
* callback gets assigned by hw_attachInterrupt()
* in RFControl::startReceiving() */
if(_hw_interruptCallback) _hw_interruptCallback();
}


Expand Down