Skip to content
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
18 changes: 16 additions & 2 deletions Marlin/src/pins/sam/pins_RADDS.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
//
// Servos
//
#define SERVO0_PIN 5
#if !HAS_CUTTER
#define SERVO0_PIN 5
#endif
#define SERVO1_PIN 6
#define SERVO2_PIN 39
#define SERVO3_PIN 40
Expand Down Expand Up @@ -184,7 +186,9 @@
#define HEATER_0_PIN 13
#define HEATER_1_PIN 12
#define HEATER_2_PIN 11
#define HEATER_BED_PIN 7 // BED
#if !HAS_CUTTER
#define HEATER_BED_PIN 7 // BED
#endif

#ifndef FAN_PIN
#define FAN_PIN 9
Expand All @@ -204,6 +208,16 @@
#define I2C_EEPROM
#define E2END 0x1FFF // 8KB

//
// M3/M4/M5 - Spindle/Laser Control
//
#if HAS_CUTTER
#if !NUM_SERVOS
#define SPINDLE_LASER_PWM_PIN 5 // SERVO0_PIN
#endif
#define SPINDLE_LASER_ENA_PIN 7 // HEATER_BED_PIN - Pullup/down!
#endif

//
// LCD / Controller
//
Expand Down