Skip to content
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

Fix missing SPI pins in Ultratronics Pro #19444

Merged
merged 1 commit into from
Sep 19, 2020
Merged
Changes from all commits
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
5 changes: 5 additions & 0 deletions Marlin/src/pins/sam/pins_ULTRATRONICS_PRO.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

/**
* ReprapWorld ULTRATRONICS v1.0
* https://reprapworld.com/documentation/datasheet_ultratronics10_05.pdf
*/

#ifndef ARDUINO_ARCH_SAM
Expand Down Expand Up @@ -146,6 +147,10 @@
#define SPI_EEPROM2_CS -1
#define SPI_FLASH_CS -1

#define SCK_PIN 76
#define MISO_PIN 74
#define MOSI_PIN 75

// SPI for Max6675 or Max31855 Thermocouple
#define MAX6675_SS_PIN 65
#define MAX31855_SS0 65
Expand Down