I want to use my ESP32 LoRa 1-Channel Gateway as a receiver for several ProRF devices in point-to-point communication mode. I am using the Radiohead library as detailed in the ProRF hookup guide examples for point -to-point. In simplest terms, I am just trying to port code that works for communication between two ProRF devices to the ESP32 Gateway device, and use it between a ProRF and the Gateway.
It is obvious that the ESP32 Gateway uses different pins for chip select and interrupt than the ProRF. I have changed ship select to 16 and interrupt to 26 in this line from the ProRF hookup guide:
RH_RF95 rf95(16, 26);
The code compiles, but there is no transmission received.
Are the pin numbers incorrect, or are there other changes I need to make to the code to make the ESP32 Gateway act like the ProRF?