We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// 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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
// 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?
The text was updated successfully, but these errors were encountered: