Skip to content

Commit

Permalink
added missing interrupt
Browse files Browse the repository at this point in the history
  • Loading branch information
cjhdev committed Jun 20, 2021
1 parent 429e26d commit f434859
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions examples/doxygen/example.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,12 @@ unsigned int system_rand(void *app)
return rand();
}

void dio0_rising_edge_isr(void)
{
LDL_Radio_handleInterrupt(&radio, 0);
}

void dio1_rising_edge_isr(void)
{
LDL_Radio_handleInterrupt(&radio, 1);
}

0 comments on commit f434859

Please sign in to comment.