Re: Project: Teacup Firmware August 16, 2016 06:46AM |
Registered: 8 years ago Posts: 6 |
Re: Project: Teacup Firmware August 16, 2016 06:58AM |
Registered: 14 years ago Posts: 7,616 |
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Project: Teacup Firmware August 18, 2016 05:49AM |
Registered: 8 years ago Posts: 6 |
Re: Project: Teacup Firmware August 18, 2016 06:12AM |
Registered: 14 years ago Posts: 7,616 |
Quote
HugoYu33
I attach the message of building FW and uploading FW.
I guess that these two messages are what you want to know?
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Project: Teacup Firmware August 18, 2016 06:44AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware September 05, 2016 02:42AM |
Registered: 8 years ago Posts: 6 |
Re: Project: Teacup Firmware September 05, 2016 05:28AM |
Registered: 14 years ago Posts: 7,616 |
Quote
HugoYu33
I modify MOVEBUFFER_SIZE from 96 to 64, the RAM size used is changed to 89.78% from 131.58%. Then issue is gone.
Quote
HugoYu33
When I power on the printer and connect to Pronterface, stepper motor(X,Y,E axis, not include Z axis) will keep a force, even no print action is applied, just idle.
Quote
HugoYu33
After a while (about 10 Mins) temperature of motor will increase quickly and temperature of A4988 heat sink also become very hot.
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Project: Teacup Firmware September 07, 2016 10:50PM |
Registered: 8 years ago Posts: 6 |
Re: Project: Teacup Firmware September 08, 2016 04:17AM |
Registered: 14 years ago Posts: 7,616 |
Quote
HugoYu33
So I have a question that why printer can't work normally when using Repetier_Host to print a object
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Project: Teacup Firmware September 08, 2016 04:26AM |
Registered: 12 years ago Posts: 364 |
Re: Project: Teacup Firmware September 08, 2016 05:06AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware October 25, 2016 01:37PM |
Registered: 14 years ago Posts: 107 |
Quote
Traumflug
One additional thing: these number given by the compiler don't take stack memory into account, so one can't even use 100%. The amount of RAM needed for stacks isn't clearly defined, it depends on the program flow. Sticking below 90% RAM with that compiler number should be safe.
Re: Project: Teacup Firmware October 25, 2016 01:54PM |
Registered: 14 years ago Posts: 7,616 |
Generation 7 Electronics | Teacup Firmware | RepRap DIY |
Re: Project: Teacup Firmware November 01, 2016 09:21AM |
Registered: 7 years ago Posts: 363 |
Re: Project: Teacup Firmware November 01, 2016 11:03AM |
Registered: 9 years ago Posts: 9 |
Re: Project: Teacup Firmware November 01, 2016 11:19AM |
Registered: 7 years ago Posts: 363 |
Quote
youssefaly97
Hello, RRD Smart Controller support is still under development in teacup. There is a branch I created a while ago and I'm working on it a bit at a time, I'm sorry I'm slow at it, college takes my time away.
Re: Project: Teacup Firmware December 03, 2016 03:55AM |
Registered: 7 years ago Posts: 26 |
Re: Project: Teacup Firmware December 23, 2016 11:05PM |
Registered: 11 years ago Posts: 290 |
Re: Project: Teacup Firmware December 24, 2016 03:27AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware December 24, 2016 06:33AM |
Registered: 11 years ago Posts: 290 |
Quote
Wurstnase
Can you send me your config files and gcode. I would like to test it.
First thing I've seen. You enabled debug. This could slow down the code. For normal use, you should disable debug in debug.h. Just comment out #define DEBUG.
Re: Project: Teacup Firmware December 24, 2016 06:38AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware December 25, 2016 06:48AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware December 27, 2016 02:11AM |
Registered: 11 years ago Posts: 290 |
Quote
Wurstnase
OK, just checked your config.
An Atmega can handle up to approx. 35k to 40k steps/s. Your E-Axis has 1,1540,000 steps/m. Your setup in S3D is 1,800 mm/min. This are 34,620 steps/s. Maybe too close on the limit. Also you could reduce max feedrate for E from 6000, which is too high, to a save 1500.
The old code uses the X-axis for a lot of calculations. This changed in the experiemental, and this could be the reason for your problem,
Re: Project: Teacup Firmware December 27, 2016 03:47AM |
Registered: 10 years ago Posts: 4,977 |
git checkout -b zungmann_1 experimental~37and test your code again?
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware December 27, 2016 05:45AM |
Registered: 11 years ago Posts: 290 |
Quote
Wurstnase
First of all, thanks for helping to improve Teacup.
In your config files you set the maximum feedrate to 6000. So your 180mm/s will decrease to 100mm/s any time.
As you are working with git. Can you please create a new local branch with
git checkout -b zungmann_1 experimental~37and test your code again?
Re: Project: Teacup Firmware December 27, 2016 05:59AM |
Registered: 10 years ago Posts: 4,977 |
Quote
zungmann
Yes, I am using git. I testing it now, still printing halfway and promising, so far so good.
Btw, how do I know what is the diff this experimental~37 from just experimental before?
git diff experimental experimental~37via gitk:
git checkout experimental gitk & git checkout experimental~37Hit F5, not shift-F5. Yellow circle is your current position. Everything above is new code, currently not active.
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware December 27, 2016 06:17AM |
Registered: 11 years ago Posts: 290 |
Finish. And now printed perfectly. Thank you.Quote
zungmann
Quote
Wurstnase
First of all, thanks for helping to improve Teacup.
In your config files you set the maximum feedrate to 6000. So your 180mm/s will decrease to 100mm/s any time.
As you are working with git. Can you please create a new local branch with
git checkout -b zungmann_1 experimental~37and test your code again?
Ah stupid me. Anyway I got decent 150 mm/s since now changed it to 9000.
Yes, I am using git. I testing it now, still printing halfway and promising, so far so good.
Re: Project: Teacup Firmware December 27, 2016 07:47AM |
Registered: 10 years ago Posts: 4,977 |
Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
Re: Project: Teacup Firmware December 27, 2016 09:55AM |
Registered: 11 years ago Posts: 290 |
Re: Project: Teacup Firmware January 11, 2017 01:34AM |
Registered: 11 years ago Posts: 290 |
Quote
zungmann
Quote
Wurstnase
Thanks for testing. This is an experimental branch and needs testing. Can I ask you later to test this again?
No problem, I will be happy to test again. I like Teacup.