Re: RADDS work now stable with RepRap Firmware January 17, 2017 09:57AM |
Registered: 9 years ago Posts: 12 |
Re: RADDS work now stable with RepRap Firmware January 17, 2017 11:44AM |
Registered: 8 years ago Posts: 68 |
Re: RADDS work now stable with RepRap Firmware January 17, 2017 12:52PM |
Registered: 10 years ago Posts: 14,684 |
Re: RADDS work now stable with RepRap Firmware January 17, 2017 01:27PM |
Registered: 8 years ago Posts: 35 |
Re: RADDS work now stable with RepRap Firmware January 18, 2017 04:30AM |
Registered: 8 years ago Posts: 68 |
Re: RADDS work now stable with RepRap Firmware January 18, 2017 03:01PM |
Registered: 8 years ago Posts: 68 |
Re: RADDS work now stable with RepRap Firmware January 18, 2017 04:38PM |
Registered: 8 years ago Posts: 35 |
Re: RADDS work now stable with RepRap Firmware January 18, 2017 05:06PM |
Registered: 10 years ago Posts: 14,684 |
Re: RADDS work now stable with RepRap Firmware January 19, 2017 02:08AM |
Registered: 8 years ago Posts: 68 |
Re: RADDS work now stable with RepRap Firmware January 19, 2017 02:24AM |
Registered: 10 years ago Posts: 14,684 |
Re: RADDS work now stable with RepRap Firmware January 19, 2017 03:14AM |
Registered: 8 years ago Posts: 68 |
Re: RADDS work now stable with RepRap Firmware January 28, 2017 01:08PM |
Registered: 10 years ago Posts: 14,684 |
Re: RADDS work now stable with RepRap Firmware January 28, 2017 10:01PM |
Registered: 8 years ago Posts: 68 |
Re: RADDS work now stable with RepRap Firmware January 29, 2017 02:42AM |
Registered: 10 years ago Posts: 14,684 |
Re: RADDS work now stable with RepRap Firmware January 29, 2017 01:56PM |
Registered: 9 years ago Posts: 5,232 |
Re: RADDS work now stable with RepRap Firmware January 30, 2017 05:50AM |
Registered: 11 years ago Posts: 1,807 |
Re: RADDS work now stable with RepRap Firmware February 17, 2017 04:16AM |
Registered: 10 years ago Posts: 14,684 |
Re: RADDS work now stable with RepRap Firmware February 17, 2017 04:24AM |
Registered: 8 years ago Posts: 68 |
Re: RADDS work now stable with RepRap Firmware February 17, 2017 05:46PM |
Registered: 10 years ago Posts: 14,684 |
Quote
shofman
Thanks. I will test this weekend.
What's new on 1.18 A2 ?
Re: RADDS work now stable with RepRap Firmware February 18, 2017 05:33PM |
Registered: 8 years ago Posts: 83 |
Re: RADDS work now stable with RepRap Firmware February 19, 2017 04:16AM |
Registered: 9 years ago Posts: 5,232 |
Re: RADDS work now stable with RepRap Firmware February 19, 2017 04:47AM |
Registered: 10 years ago Posts: 14,684 |
Quote
AK_Eric
I thought I'd give this upgrade path a shot again: I'm currently on 1.17b. From your github :
I copied iapradds.bin to the /sys folder
I copied RepRapFirmware-RADDS-1.18alpha2.bin & renamed it to RepRapFirmware-RADDS.bin & RepRapFirmware.bin in the /sys folder
I tried issuing a M997 S0 from Simplify 3D (I disabled the M105 calls before hand), Octoprint, and a simple Python script that just acts like a remedial serial terminal for gcode. For some reason, I'm unable to get Arduino's serial monitor to connect to the bot (I'm on a new computer since I last tried this).
All instances were the same: Nothing happens.
I do loose connection right after I issue the command, but after re-connection (I wait a minute), it's still 1.17b, and all the files I copied to he board are still present.
Am I doing anything wrong? If not, maybe RADDS just doesn't like this type of updating? I can still use the 'press the due reset button with a popsicle stick' method to update the firmware, but it'd sure be slick if I got this working.
Again, thanks dc42 for making these RADDS ports in the first place, much appreciated!
Re: RADDS work now stable with RepRap Firmware February 19, 2017 09:30AM |
Registered: 7 years ago Posts: 39 |
Re: RADDS work now stable with RepRap Firmware February 19, 2017 06:50PM |
Registered: 8 years ago Posts: 83 |
Re: RADDS work now stable with RepRap Firmware February 20, 2017 03:31AM |
Registered: 9 years ago Posts: 5,232 |
Re: RADDS work now stable with RepRap Firmware February 20, 2017 10:13AM |
Registered: 7 years ago Posts: 2 |
RADDS2LCD in Repetier-Firmware for DEV-version (1.x.x) ====================================================== Hardware -------- Box Header: pin 1 = red conductor from ribbon cable -> side is marked with "rt" on RADDS2LCD.u / RADDS2LCD.o on RADDS: red conductor towards MOS-FETs and screw terminals Repetier.h ---------- at end of block beginning with: ################################## #define NO_CONTROLLER 0 add these lines: ######### #define CONTROLLER_RADDS_LCD_16X2 997 #define CONTROLLER_RADDS_LCD_20X4 998 #define CONTROLLER_RADDS_FGSC 999 Configuration.h -------------- replace this: ##################### #define FEATURE_CONTROLLER ... by this: ###### /* which display ??? - full graphics smart controller is tested! - row / column display is NOT TESTED - use with own testing */ //#define FEATURE_CONTROLLER CONTROLLER_RADDS_LCD_16X2 // RADDS2LCD -> LCD with 16 columns and 2 rows //#define FEATURE_CONTROLLER CONTROLLER_RADDS_LCD_20X4 // RADDS2LCD -> LCD with 20 columns and 4 rows #define FEATURE_CONTROLLER CONTROLLER_RADDS_FGSC // RADDS2LCD -> Full Graphics Smart Controller ui.h ---- after these lines ####### #if FEATURE_CONTROLLER == CONTROLLER_RAMBO ... #endif add these lines ############### // RADDS + RADDS2LCD + Full Graphics Smart Controller / other 4-bit LCD #if (FEATURE_CONTROLLER == CONTROLLER_RADDS_FGSC || FEATURE_CONTROLLER == CONTROLLER_RADDS_LCD_16X2 || FEATURE_CONTROLLER == CONTROLLER_RADDS_LCD_20X4) #undef SDCARDDETECT #define SDCARDDETECT -1 #undef SDSUPPORT #define SDSUPPORT 1 #endif // FEATURE_CONTROLLER == CONTROLLER_RADDS_FGSC DisplayList.h ------ before or after these lines: ################### #if FEATURE_CONTROLLER == CONTROLLER_RADDS #undef SDSS ... void uiCheckSlowKeys(uint16_t &action) {} #endif add these lines ############## #if (FEATURE_CONTROLLER == CONTROLLER_RADDS_FGSC || FEATURE_CONTROLLER == CONTROLLER_RADDS_LCD_16X2 || FEATURE_CONTROLLER == CONTROLLER_RADDS_LCD_20X4) #undef SDSS #define SDSS 10 #undef SPI_PIN #define SPI_PIN 77 #undef SPI_CHAN #define SPI_CHAN 0 #define UI_HAS_KEYS 1 #define UI_HAS_BACK_KEY 0 // decide which lcd is used #if (FEATURE_CONTROLLER == CONTROLLER_RADDS_FGSC) #define UI_DISPLAY_TYPE DISPLAY_U8G #define U8GLIB_ST7920 #define UI_LCD_WIDTH 128 #define UI_LCD_HEIGHT 64 //select font size #define UI_FONT_6X10 //default font #ifdef UI_FONT_6X10 #define UI_FONT_WIDTH 6 #define UI_FONT_HEIGHT 10 #define UI_FONT_SMALL_HEIGHT 7 #define UI_FONT_DEFAULT repetier_6x10 #define UI_FONT_SMALL repetier_5x7 #define UI_FONT_SMALL_WIDTH 5 //smaller font for status display #define UI_ANIMATION false // Animations are too slow #endif //calculate rows and cols available with current font #define UI_COLS (UI_LCD_WIDTH/UI_FONT_WIDTH) #define UI_ROWS (UI_LCD_HEIGHT/UI_FONT_HEIGHT) #define UI_DISPLAY_CHARSET 3 #elif (FEATURE_CONTROLLER == CONTROLLER_RADDS_LCD_16X2) #define UI_DISPLAY_TYPE DISPLAY_4BIT #define UI_COLS 16 #define UI_ROWS 2 #else (FEATURE_CONTROLLER == CONTROLLER_RADDS_LCD_20X4) #define UI_DISPLAY_TYPE DISPLAY_4BIT #define UI_COLS 20 #define UI_ROWS 4 #endif #define UI_DISPLAY_CHARSET 3 #define BEEPER_TYPE 1 #undef BEEPER_PIN #define BEEPER_PIN 41 #define UI_DISPLAY_RS_PIN 42 #define UI_DISPLAY_RW_PIN -1 #define UI_DISPLAY_ENABLE_PIN 43 #define UI_DISPLAY_D0_PIN 44 #define UI_DISPLAY_D1_PIN 45 #define UI_DISPLAY_D2_PIN 46 #define UI_DISPLAY_D3_PIN 47 #define UI_DISPLAY_D4_PIN 44 #define UI_DISPLAY_D5_PIN 45 #define UI_DISPLAY_D6_PIN 46 #define UI_DISPLAY_D7_PIN 47 // swap these two numbers to invert rotary encoder scroll direction #define UI_ENCODER_A 50 #define UI_ENCODER_B 52 #define UI_ENCODER_CLICK 48 #define UI_RESET_PIN -1 #define UI_DELAYPERCHAR 50 #define UI_INVERT_MENU_DIRECTION 0 #define UI_BUTTON_BACK 71 // -1 #ifdef UI_MAIN void uiInitKeys() { UI_KEYS_INIT_CLICKENCODER_LOW(UI_ENCODER_A, UI_ENCODER_; // click encoder on pins 47 and 45. Phase is connected with gnd for signals. UI_KEYS_INIT_BUTTON_LOW(UI_ENCODER_CLICK); // push button, connects gnd to pin UI_KEYS_INIT_BUTTON_LOW(UI_BUTTON_BACK); } void uiCheckKeys(uint16_t &action) { UI_KEYS_CLICKENCODER_LOW(UI_ENCODER_A, UI_ENCODER_; // click encoder on pins 47 and 45. Phase is connected with gnd for signals. UI_KEYS_BUTTON_LOW(UI_ENCODER_CLICK, UI_ACTION_OK); // push button, connects gnd to pin UI_KEYS_BUTTON_LOW(UI_BUTTON_BACK, UI_ACTION_BACK); } inline void uiCheckSlowEncoder() {} void uiCheckSlowKeys(uint16_t &action) {} #endif #endif // controller RADDS2LCD DisplayList.h - (optional) -------------------------- if you want to swap rotary encoder scroll direction (count clock / clockwise rotation) then swap ########################################## #if FEATURE_CONTROLLER == CONTROLLER_RADDS_FGSC ... #define UI_ENCODER_A 52 #define UI_ENCODER_B 50 ########################################## to ########################################## #if FEATURE_CONTROLLER == CONTROLLER_RADDS_FGSC ... #define UI_ENCODER_A 50 #define UI_ENCODER_B 52 ##########################################
Re: RADDS work now stable with RepRap Firmware March 01, 2017 10:26AM |
Registered: 8 years ago Posts: 35 |
Re: RADDS work now stable with RepRap Firmware March 01, 2017 11:58AM |
Registered: 10 years ago Posts: 14,684 |
Quote
spinor
Just to report that the M997 S0 upgrade to 1.18alpha2 worked OK for me. I used Pronterface at 57600 baud with temperature monitoring turned off. (My Due also has the reset bug, by the way.)
Re: RADDS work now stable with RepRap Firmware March 01, 2017 01:45PM |
Registered: 8 years ago Posts: 35 |
Quote
dc42
Quote
spinor
Just to report that the M997 S0 upgrade to 1.18alpha2 worked OK for me. I used Pronterface at 57600 baud with temperature monitoring turned off. (My Due also has the reset bug, by the way.)
Thanks for the feedback!
Re: RADDS work now stable with RepRap Firmware March 01, 2017 05:24PM |
Registered: 9 years ago Posts: 15 |