Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MarlinKimbra
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
MarlinKimbra
Commits
a3f74efe
Commit
a3f74efe
authored
Aug 19, 2015
by
Simone Primarosa
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5 from MagoKimbra/master
Update from master
parents
9cccb96c
971c0ac5
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
39 additions
and
28 deletions
+39
-28
changelog.md
Documentation/changelog.md
+1
-0
Configuration_adv.h
MarlinKimbra/Configuration_adv.h
+8
-11
conditionals.h
MarlinKimbra/conditionals.h
+22
-9
temperature.cpp
MarlinKimbra/temperature.cpp
+8
-8
No files found.
Documentation/changelog.md
View file @
a3f74efe
...
...
@@ -8,6 +8,7 @@
### Version 4.1.5
*
Implemented FAST_PWM_FAN and FAN_SOFT_PWM also for other fan that can be added in configuration_adv file.
*
Added the ability to set a min speed to the fan that can be added in configuration_adv file.
*
Critical stepper motor frequency bugfix
*
General bugfix
### Version 4.1.4
...
...
MarlinKimbra/Configuration_adv.h
View file @
a3f74efe
...
...
@@ -81,8 +81,8 @@
//This is for controlling a fan to cool down the stepper drivers
//it will turn on when any driver is enabled
//and turn off after the set amount of seconds from last driver being disabled again
#define CONTROLLERFAN_PIN -1
//
Pin used for the fan to cool controller (-1 to disable)
#define CONTROLLERFAN_SECS 60
//
How many seconds, after all motors were disabled, the fan should run
#define CONTROLLERFAN_PIN -1
//
Pin used for the fan to cool controller (-1 to disable)
#define CONTROLLERFAN_SECS 60
//
How many seconds, after all motors were disabled, the fan should run
#define CONTROLLERFAN_SPEED 255 // 255 = full speed
#define CONTROLLERFAN_MIN_SPEED 0
...
...
@@ -333,16 +333,13 @@
// Babystepping enables the user to control the axis in tiny amounts, independently from the normal printing process
// it can e.g. be used to change z-positions in the print startup phase in real-time
// does not respect endstops!
#ifdef CARTESIAN
#define BABYSTEPPING //On cartesian printer this can be enabled as default as fully working
#else
//#define BABYSTEPPING
#endif
#if ENABLED(BABYSTEPPING)
#define BABYSTEP_XY //not only z, but also XY in the menu. more clutter, more functions
//not implemented for CoreXY and deltabots!
#define BABYSTEP_INVERT_Z false
//
true for inverse movements in Z
#define BABYSTEP_Z_MULTIPLICATOR 2
//
faster z movements
#define BABYSTEP_XY //
not only z, but also XY in the menu. more clutter, more functions
//
not implemented for CoreXY and deltabots!
#define BABYSTEP_INVERT_Z false
//
true for inverse movements in Z
#define BABYSTEP_Z_MULTIPLICATOR 2
//
faster z movements
#endif
// extruder advance constant (s2/mm3)
...
...
MarlinKimbra/conditionals.h
View file @
a3f74efe
...
...
@@ -41,7 +41,6 @@
#define DOGLCD // Support for I2C LCD 128x64 (Controller SSD1306 graphic Display Family)
#endif
#if ENABLED(PANEL_ONE)
#define SDSUPPORT
#define ULTIMAKERCONTROLLER
...
...
@@ -98,7 +97,6 @@
/**
* I2C PANELS
*/
#if ENABLED(LCD_I2C_SAINSMART_YWROBOT)
// This uses the LiquidCrystal_I2C library ( https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home )
// Make sure it is placed in the Arduino libraries directory.
...
...
@@ -368,7 +366,7 @@
#define MAX_PROBE_Y (min(Y_MAX_POS, Y_MAX_POS + Y_PROBE_OFFSET_FROM_EXTRUDER))
// Z_RAISE_AFTER_PROBING is not for all probes. Be sure that it is zero in that cases
#if (NUM_SERVOS == 0) &&
!defined
(Z_PROBE_SLED)
#if (NUM_SERVOS == 0) &&
DISABLED
(Z_PROBE_SLED)
#undef Z_RAISE_AFTER_PROBING
#define Z_RAISE_AFTER_PROBING 0
#endif
...
...
@@ -386,6 +384,13 @@
#define Z_SAFE_HOMING
#endif
/**
* Babystepping
*/
#if ENABLED(CARTESIAN)
#define BABYSTEPPING // On Cartesian printer this can be enabled as default as fully working
#endif
/**
* MAX_STEP_FREQUENCY differs for TOSHIBA OR ARDUINO DUE OR ARDUINO MEGA
*/
...
...
@@ -431,8 +436,10 @@
#undef SD_DETECT_INVERTED
#endif
// Power Signal Control Definitions
// By default use Normal definition
/**
* Power Signal Control Definitions
* By default use Normal definition
*/
#ifndef POWER_SUPPLY
#define POWER_SUPPLY 0
#endif
...
...
@@ -673,8 +680,14 @@
#endif
#endif
/**
* Buzzer
*/
#define HAS_BUZZER (PIN_EXISTS(BEEPER) || defined(LCD_USE_I2C_BUZZER))
/**
* Servos
*/
#if HAS_SERVOS
#if X_ENDSTOP_SERVO_NR >= 0 || Y_ENDSTOP_SERVO_NR >= 0 || Z_ENDSTOP_SERVO_NR >= 0
#define HAS_SERVO_ENDSTOPS true
...
...
MarlinKimbra/temperature.cpp
View file @
a3f74efe
...
...
@@ -997,7 +997,6 @@ void tp_init() {
#endif
#endif
#if HAS_POWER_CONSUMPTION_SENSOR
ANALOG_SELECT
(
POWER_CONSUMPTION_PIN
);
#endif
...
...
@@ -1599,6 +1598,7 @@ ISR(TIMER0_COMPB_vect) {
// Prepare or measure a sensor, each one every 14th frame
switch
(
temp_state
)
{
case
PrepareTemp_0
:
#if HAS_TEMP_0
START_ADC
(
TEMP_0_PIN
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment