Skip to content

Commit

Permalink
add wiringPi pin number for CE_PIN to linux examples
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Mar 18, 2024
1 parent 7973ba6 commit 8481d6d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples_linux/acknowledgementPayloads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ using namespace std;
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down
2 changes: 2 additions & 0 deletions examples_linux/gettingstarted.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ using namespace std;
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down
2 changes: 2 additions & 0 deletions examples_linux/interruptConfigure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ volatile bool got_interrupt = false; // used to signify that the event started
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down
2 changes: 2 additions & 0 deletions examples_linux/manualAcknowledgements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ using namespace std;
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down
2 changes: 2 additions & 0 deletions examples_linux/multiceiverDemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ using namespace std;
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down
2 changes: 2 additions & 0 deletions examples_linux/ncurses/scanner_curses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ using namespace std;
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down
2 changes: 2 additions & 0 deletions examples_linux/scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ using namespace std;
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down
2 changes: 2 additions & 0 deletions examples_linux/streamingData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ using namespace std;
#define CSN_PIN 0
#ifdef MRAA
#define CE_PIN 15 // GPIO22
#else if defined(RF24_WIRINGPI)
#define CE_PIN 3 // GPIO22
#else
#define CE_PIN 22
#endif
Expand Down

0 comments on commit 8481d6d

Please sign in to comment.