Pin Configuration for hopeRF95W

Thread Starter

saikumar.elab

Joined Jan 6, 2018
12
Hi,

I had connected the hope RF module to arduino 328p and designed a single PCB. I tried with ttn-abp program where i can configure the nss, rst, dio pins.

When i tried with the Dragino GPS shield i gave the pin configuration as given below.

// Pin mapping
const lmic_pinmap lmic_pins = {
.nss = 10,
.rxtx = LMIC_UNUSED_PIN,
.rst = 9,
.dio = {2, 6, 7},
};

When i designed it in a single board, the schematic is given below and i changed the pin configurations to

// Pin mapping
const lmic_pinmap lmic_pins = {
.nss = 10,
.rxtx = LMIC_UNUSED_PIN,
.rst = 8,
.dio = {7, 6, 5},
};

but eventhough it throws error like the attached image. kindly help me to solve this issue.

Thanks in advance,
Saikumar
 

Attachments

Top