Reprap firmware help? i3 + Full Graphic display required November 11, 2013 09:53PM |
Registered: 11 years ago Posts: 66 |
Re: Reprap firmware help? i3 + Full Graphic display required November 12, 2013 01:20AM |
Registered: 13 years ago Posts: 1,797 |
Re: Reprap firmware help? i3 + Full Graphic display required November 12, 2013 04:22PM |
Registered: 11 years ago Posts: 66 |
Re: Reprap firmware help? i3 + Full Graphic display required November 13, 2013 05:10PM |
Registered: 11 years ago Posts: 12 |
Re: Reprap firmware help? i3 + Full Graphic display required January 24, 2014 08:18PM |
Registered: 10 years ago Posts: 10 |
Re: Reprap firmware help? i3 + Full Graphic display required January 24, 2014 08:37PM |
Registered: 13 years ago Posts: 1,797 |
Re: Reprap firmware help? i3 + Full Graphic display required February 01, 2014 06:53AM |
Admin Registered: 17 years ago Posts: 7,881 |
Quote
Please, please tell me where I can find earlier commit of the marlin firmware.
Re: Reprap firmware help? i3 + Full Graphic display required April 29, 2014 07:36AM |
Registered: 10 years ago Posts: 7 |
Re: Reprap firmware help? i3 + Full Graphic display required April 29, 2014 05:56PM |
Registered: 12 years ago Posts: 258 |
Quote
charleslow
...
Please, please tell me where I can find earlier commit of the marlin firmware. I have looked everywhere (https://github.com/ErikZalm/Marlin) and every place imaginable and I cannot find an earlier firmware version anywhere.
Where can I find it?
Thanks,
Charles.
Quote
ddurkee0
I have a new Full Graphics Display and tried Marlin_v1 on 2 different Arduino 2560. No display.
[github.com]
the zip file is named Marlin-Marlin_v1 when downloaded from github. I don't know what other information to give.
Re: Reprap firmware help? i3 + Full Graphic display required April 29, 2014 09:51PM |
Registered: 10 years ago Posts: 7 |
Re: Reprap firmware help? i3 + Full Graphic display required April 29, 2014 09:52PM |
Registered: 10 years ago Posts: 7 |
Re: Reprap firmware help? i3 + Full Graphic display required May 07, 2014 09:42PM |
Registered: 10 years ago Posts: 7 |
Re: Reprap firmware help? i3 + Full Graphic display required February 20, 2015 11:10AM |
Registered: 9 years ago Posts: 124 |
Quote
ddurkee0
I found that I could use the latest Marlin and Arduino (Marlin-Marlin_v1, Arduino 1.0.5).
The problem was that I didn't set all of the required configuration items in the Configuration.h file/tab.
The Full Graphics Display is fine. The Ebay seller just didn't know to tell me to check the configuration.h or how to troubleshoot a blank display)
I followed a tutorial walk-through on one of the Reprap kit sellers websites.
I think it was this one: [replicatorwarehouse.com]
replicatorwarehouse.com/get-started-with-marlin-frimware-for-rw-prusa-i3
Thank you replicatorwarehouse
Re: Reprap firmware help? i3 + Full Graphic display required February 20, 2015 12:21PM |
Registered: 10 years ago Posts: 7 |
Re: Reprap firmware help? i3 + Full Graphic display required February 20, 2015 02:33PM |
Registered: 9 years ago Posts: 124 |
Quote
ddurkee0
Hi psneddon,
It was a problem in the Marlin files for the Arduino MEGA2560.
I recommend you get the latest revision. (And also get any required libraries.)
Using the Arduino IDE, from your sketchbook, open Marlin.
Find the tab for configuration.h and open the file.
Go through all of the statements #DEFINE and make sure the values match what you have on your personal REPRAP.
I don't remember exectly what the problem was in my case. But it was an obvious configuration #DEFINE that I needed to correct.
I'll throw in a few examples from my configuration.h file. You can use my settings only as a reference. It is likely your settings will be different.
** I'm not sure how much about compilers you know... so when a line starts with // the line is ignored. When you see # it tells the compiler to take a course of action. **
// I'm using a MEGA2560 and the latest RAMPS:
#ifndef MOTHERBOARD
#define MOTHERBOARD 33
#endif
// My power supply is a 30 Amp, 12V brick from Ebay. If you define the xbox the software limit the current draw. I don't need to worry about current.
#define POWER_SUPPLY 1
// note to psneddon - I kind of remember that I didn't have the thermistor correct and it the software couldn't work.
// I think the thermistors not having a #DEFINE value set correctly was THEconfiguration error to cause the display to be blank (I'm thinking the code got trapped in an infinite loop or something similar). I know it doesn't look related but I think it was the problem.
// the amount of code written in the MARLIN project makes it a difficult task to trace back to find the exact root cause.
//I have a thermistor for the hot end and another for the bed. Both are type 1 in the list: // 1 is 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
#define TEMP_SENSOR_0 1
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_BED 1
// ==> REMEMBER TO INSTALL U8glib to your ARDUINO library folder: [code.google.com]
// note to psneddon - This may be what you need to have defined. later in the configuration.h file this define is referenced for additional compiler options
#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
// make sure this define statement is right before the line that reads //automatic expansion. don't mess with anything below the line.
The placement of the define statements matters. So if you define something at the top of the configuration.h file but then is define it again with a different value, the first define is overwritten
Re: Reprap firmware help? i3 + Full Graphic display required February 20, 2015 07:27PM |
Registered: 9 years ago Posts: 124 |
Re: Reprap firmware help? i3 + Full Graphic display required February 20, 2015 07:55PM |
Registered: 10 years ago Posts: 7 |
Re: Reprap firmware help? i3 + Full Graphic display required February 20, 2015 08:09PM |
Registered: 10 years ago Posts: 7 |
Re: Reprap firmware help? i3 + Full Graphic display required February 21, 2015 12:19AM |
Registered: 9 years ago Posts: 124 |
Quote
ddurkee0
I had missed your other information.
Don't change anything in the config.h file.
The tab you need to click on in configuration.h not config.h.
The mother board define does need to be 33 not a text name.
The installation of the library is the same as any other arduino library.... place the U8glib library file in the folder ...\\My Documents\Arduino\Libraries (my path is C:\Users\Dave\Documents\Arduino\libraries on a Win 7 computer)
It is different based on the operation system and the user logon name. I think you can figure that out.
Also, If the library is not installed properly, the compile probably would fail and not upload any code to the target arduino.
*** Again since you say there is text and graphics but the back light is dim, I am willing to bet the power supply voltages are out of specifications. ***
Some of the 12 brick supplies have an adjustment pot. Don't adjust the pot when the arduino is connected.
Re: Reprap firmware help? i3 + Full Graphic display required February 23, 2015 09:44AM |
Registered: 9 years ago Posts: 124 |
Quote
psneddon
Quote
ddurkee0
I had missed your other information.
Don't change anything in the config.h file.
The tab you need to click on in configuration.h not config.h.
The mother board define does need to be 33 not a text name.
The installation of the library is the same as any other arduino library.... place the U8glib library file in the folder ...\\My Documents\Arduino\Libraries (my path is C:\Users\Dave\Documents\Arduino\libraries on a Win 7 computer)
It is different based on the operation system and the user logon name. I think you can figure that out.
Also, If the library is not installed properly, the compile probably would fail and not upload any code to the target arduino.
*** Again since you say there is text and graphics but the back light is dim, I am willing to bet the power supply voltages are out of specifications. ***
Some of the 12 brick supplies have an adjustment pot. Don't adjust the pot when the arduino is connected.
I appreciate the assistance. I apologize for the abbreviation on the configuation.h tab - that's where I made the changes.
I've been adding the U8glib through the Arduino window
I don't think it's a power issue, but I may be wrong. The power supply is putting out about 12.2 volts. I reloaded an earlier version of Arduino (1.0.5) and the display lights up great for about 30 to 40 seconds before it dims.
I use a MAC computer and the hierarchy is a bit different. I'll do some more trial and error testing over the weekend. Thanks again.
Re: Reprap firmware help? i3 + Full Graphic display required February 23, 2015 08:02PM |
Registered: 9 years ago Posts: 124 |
Re: Reprap firmware help? i3 + Full Graphic display required March 25, 2015 12:23PM |
Registered: 9 years ago Posts: 26 |
Re: Reprap firmware help? i3 + Full Graphic display required March 26, 2015 02:35AM |
Registered: 10 years ago Posts: 477 |