IQRF SPI library for Arduino  Version 1.2
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros
CallbackFunctions.h
Go to the documentation of this file.
1 
22 #ifndef CALLBACKFUNCTIONS_H
23 #define CALLBACKFUNCTIONS_H
24 
25 #include <stdint.h>
26 
27 #include "iqrf_library.h"
28 
29 void doNothingRx();
30 void doNothingTx(uint8_t packetId, uint8_t packetResult);
31 void identifyRx();
32 void identifyTx(uint8_t packetId, uint8_t packetResult);
33 
34 #endif
void doNothingTx(uint8_t packetId, uint8_t packetResult)
Definition: CallbackFunctions.cpp:36
void doNothingRx()
Definition: CallbackFunctions.cpp:27
void identifyRx()
Definition: CallbackFunctions.cpp:43
void identifyTx(uint8_t packetId, uint8_t packetResult)
Definition: CallbackFunctions.cpp:52