PULSE XL FIRMWARE ERROR September 30, 2022 09:29AM |
Registered: 1 year ago Posts: 9 |
Re: PULSE XL FIRMWARE ERROR September 30, 2022 09:53AM |
Admin Registered: 12 years ago Posts: 6,918 |
Re: PULSE XL FIRMWARE ERROR September 30, 2022 10:09AM |
Admin Registered: 12 years ago Posts: 6,918 |
Re: PULSE XL FIRMWARE ERROR September 30, 2022 12:22PM |
Registered: 1 year ago Posts: 9 |
Re: PULSE XL FIRMWARE ERROR September 30, 2022 09:55PM |
Admin Registered: 12 years ago Posts: 6,918 |
// // Heaters / Fans // #define HEATER_0_PIN 3 #define HEATER_BED_PIN 4 #ifndef FAN_PIN #define FAN_PIN -1 #endif #ifndef FAN1_PIN #define FAN1_PIN 6 #endif /** * ------ ------ * 84 PH2 | 1 2 | PH6 9 50 MISO | 1 2 | SCK 52 * 61 PF7 | 3 4 | PD5 82 72 PJ2 | 3 4 | SDSS 77 * 59 PF5 | 5 6 PG4 70 14 TX3 | 5 6 MOSI 51 * 85 PH7 | 7 8 | PG3 71 15 RX3 | 7 8 | RESET * GND | 9 10 | 5V GND | 9 10 | PE3 5 * ------ ------ * EXP1 EXP2 */ #define EXP1_01_PIN 84 #define EXP1_02_PIN 9 #define EXP1_03_PIN 61 #define EXP1_04_PIN 82 #define EXP1_05_PIN 59 #define EXP1_06_PIN 70 #define EXP1_07_PIN 85 #define EXP1_08_PIN 71 #define EXP2_01_PIN 50 #define EXP2_02_PIN 52 #define EXP2_03_PIN 72 #define EXP2_04_PIN 77 #define EXP2_05_PIN 14 #define EXP2_06_PIN 51 #define EXP2_07_PIN 15 #define EXP2_08_PIN -1 // // Misc. Functions // #define SDSS EXP2_04_PIN // PB0_SD-SS #define LED_PIN 13 #define CASE_LIGHT_PIN EXP1_02_PIN // LCD / Controller // #define BTN_EN1 EXP2_05_PIN // TX3 #define BTN_EN2 EXP2_03_PIN // PJ2 #define BTN_ENC EXP1_02_PIN // #define SD_DETECT_PIN EXP2_07_PIN // RX3 #if defined(VIKI2) || defined(miniVIKI) #define BEEPER_PIN EXP1_01_PIN // PH2 #define DOGLCD_A0 EXP1_06_PIN // PG4 #define DOGLCD_CS EXP1_08_PIN // PG3 //#define LCD_SCREEN_ROT_180 #endif // Viki2 #ifdef TEMP_STAT_LEDS #define STAT_LED_RED_PIN EXP1_03_PIN // PF7 #define STAT_LED_BLUE_PIN EXP1_05_PIN // PF5 #endif #if defined(REPRAP_DISCOUNT_SMART_CONTROLLER) #define LCD_PINS_RS EXP1_04_PIN #define LCD_PINS_ENABLE EXP1_03_PIN #define LCD_PINS_D4 EXP1_05_PIN #define LCD_PINS_D5 EXP1_06_PIN #define LCD_PINS_D6 EXP1_07_PIN #define LCD_PINS_D7 EXP1_08_PIN #define BEEPER_PIN EXP1_01_PIN #endif #if defined (FYSETC_MINI_12864_2_1) #define NEOPIXEL_PIN EXP1_06_PIN #define BEEPER_PIN EXP1_01_PIN #define DOGLCD_A0 EXP1_04_PIN #define DOGLCD_CS EXP1_03_PIN //#define FORCE_SOFT_SPI // Use this if default of hardware SPI causes display problems // results in LCD soft SPI mode 3, SD soft SPI mode 0 #define LCD_RESET_PIN EXP1_05_PIN // Must be high or open for LCD to operate normally. #endif
Re: PULSE XL FIRMWARE ERROR October 01, 2022 08:14AM |
Registered: 1 year ago Posts: 9 |
Re: PULSE XL FIRMWARE ERROR October 13, 2022 01:12PM |
Registered: 1 year ago Posts: 9 |
Re: PULSE XL FIRMWARE ERROR October 13, 2022 08:08PM |
Admin Registered: 12 years ago Posts: 6,918 |
Re: PULSE XL FIRMWARE ERROR October 13, 2022 08:47PM |
Registered: 1 year ago Posts: 9 |
Re: PULSE XL FIRMWARE ERROR October 13, 2022 08:54PM |
Admin Registered: 12 years ago Posts: 6,918 |
Re: PULSE XL FIRMWARE ERROR October 13, 2022 09:15PM |
Admin Registered: 12 years ago Posts: 6,918 |
#define NEOPIXEL_LED #if ENABLED(NEOPIXEL_LED) #define NEOPIXEL_TYPE NEO_RGB // NEO_GRBW, NEO_RGBW, NEO_GRB, NEO_RBG, etc. //#define NEOPIXEL_PIN 4 // LED driving pin #define NEOPIXEL_PIXELS 3 // Number of LEDs in the strip. (Longest strip when NEOPIXEL2_SEPARATE is disabled.) #define NEOPIXEL_IS_SEQUENTIAL // Sequential display for temperature change - LED by LED. Disable to change all LEDs at once. #define NEOPIXEL_BRIGHTNESS 127 // Initial brightness (0-255)
Re: PULSE XL FIRMWARE ERROR October 14, 2022 11:51AM |
Registered: 1 year ago Posts: 9 |