Open Frizbi22 opened 1 month ago
// Pin mapping I am changing this const lmic_pinmap lmic_pins = { .nss = 6, .rxtx = LMIC_UNUSED_PIN, .rst = 5, .dio = {2, 3, 4}, }; to this const lmic_pinmap lmic_pins = { .nss = 18, // Chip Select pin (CS) .rxtx = LMIC_UNUSED_PIN, // RX/TX not used .rst = 23, // Reset pin (RST) .dio = {26, 25, 4} // DIO0, DIO1, DIO2 pins };
but I am not sure If this is correct? Can someone pls confirm?
// Pin mapping I am changing this const lmic_pinmap lmic_pins = { .nss = 6, .rxtx = LMIC_UNUSED_PIN, .rst = 5, .dio = {2, 3, 4}, }; to this const lmic_pinmap lmic_pins = { .nss = 18, // Chip Select pin (CS) .rxtx = LMIC_UNUSED_PIN, // RX/TX not used .rst = 23, // Reset pin (RST) .dio = {26, 25, 4} // DIO0, DIO1, DIO2 pins };
but I am not sure If this is correct? Can someone pls confirm?