Need some marlin configuration help January 31, 2022 03:19PM |
Registered: 1 year ago Posts: 8 |
Re: Need some marlin configuration help January 31, 2022 05:59PM |
Admin Registered: 12 years ago Posts: 6,730 |
Re: Need some marlin configuration help February 01, 2022 11:05AM |
Registered: 1 year ago Posts: 8 |
Re: Need some marlin configuration help February 01, 2022 07:09PM |
Admin Registered: 12 years ago Posts: 6,730 |
Re: Need some marlin configuration help February 01, 2022 08:45PM |
Registered: 1 year ago Posts: 8 |
Re: Need some marlin configuration help February 01, 2022 10:04PM |
Admin Registered: 12 years ago Posts: 6,730 |
Re: Need some marlin configuration help April 19, 2022 08:23AM |
Registered: 11 months ago Posts: 2 |
Re: Need some marlin configuration help April 19, 2022 12:37PM |
Registered: 1 year ago Posts: 8 |
Re: Need some marlin configuration help April 19, 2022 02:32PM |
Registered: 6 years ago Posts: 293 |
* IMPORTANT: Runout will only trigger if Marlin is aware that a print job is running. * Marlin knows a print job is running when: * 1. Running a print job from media started with M24. * 2. The Print Job Timer has been started with M75. * 3. The heaters were turned on and PRINTJOB_TIMER_AUTOSTART is enabled.
Re: Need some marlin configuration help April 19, 2022 07:48PM |
Registered: 11 months ago Posts: 2 |
Re: Need some marlin configuration help April 20, 2022 01:22AM |
Registered: 1 year ago Posts: 8 |
Quote
[email protected]
On my BTT sensor I was getting false triggers so I increased FILAMENT_RUNOUT_DISTANCE_MM from 7 to 10.
Does your bed levelling involve putting down filament on the bed? If not then the following may be of interest. It's in the default Marlin configuration.h file but not in your version:
* IMPORTANT: Runout will only trigger if Marlin is aware that a print job is running. * Marlin knows a print job is running when: * 1. Running a print job from media started with M24. * 2. The Print Job Timer has been started with M75. * 3. The heaters were turned on and PRINTJOB_TIMER_AUTOSTART is enabled.
Re: Need some marlin configuration help April 20, 2022 01:31AM |
Registered: 6 years ago Posts: 293 |
Re: Need some marlin configuration help April 20, 2022 11:48AM |
Registered: 1 year ago Posts: 8 |
Quote
[email protected]
I don't see any nice options.
Is there a free I/O pin you can use instead of PA4 for the filament out sensor? This is a safe option but requires a custom cable.
IF the above referenced schematic is correct then the SD card isn't tied to PA4. As I read the schematic, SDSS is actually tied to PC11. Typing in the M43 command will get you a list of all the pins along with the name(s) of the signals attached to them. To enable M43 you need to enable PINS_DEBUGGING in configuration_adv.h
I got a headache trying to understand the implications of what you see with M43.
- ...If SDSS is listed for PA4 only then the schematic is wrong and PA4 can't be used for the filament out sensor.
- ...If SDSS is listed for PC11 only then the schematic is correct and you are safe to use PA4 for the filament out sensor. BUT then I don't understand why you haven't been able to get your sensor to work properly. In this case please attach you configuration and pins files (maybe I can spot something).
Re: Need some marlin configuration help April 20, 2022 04:20PM |
Registered: 1 year ago Posts: 8 |
Re: Need some marlin configuration help April 20, 2022 06:02PM |
Registered: 6 years ago Posts: 293 |
Re: Need some marlin configuration help April 20, 2022 06:05PM |
Registered: 6 years ago Posts: 293 |
Re: Need some marlin configuration help April 20, 2022 06:55PM |
Registered: 1 year ago Posts: 8 |
Quote
[email protected]
#define FILAMENT_RUNOUT_DISTANCE_MM should only be active if you have a sensor that detects motion.
A simple mechanical switch just detects if the filament is present or not. This type of sensor must have it commented out.
Re: Need some marlin configuration help April 20, 2022 07:23PM |
Registered: 6 years ago Posts: 293 |