Skip to content

[NORA-W1] Fix SPI pin assignments to match Arduino pinout. #7208

New issue

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

Merged
merged 2 commits into from
Sep 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions variants/nora_w10/pins_arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ static const uint8_t LED_BLUE = 8;
#define BUILTIN_LED LED_BLUE // backward compatibility
#define LED_BUILTIN LED_BLUE

static const uint8_t SS = 10;
static const uint8_t MOSI = 11;
static const uint8_t MISO = 13;
static const uint8_t SCK = 12;
static const uint8_t SS = 34;
static const uint8_t MOSI = 35;
static const uint8_t MISO = 37;
static const uint8_t SCK = 36;

static const uint8_t A0 = 11;
static const uint8_t A1 = 12;
Expand Down