Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
marlin-anet-a8
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
01d28c18
Commit
01d28c18
authored
Feb 23, 2012
by
Erik van der Zalm
Browse files
Options
Downloads
Patches
Plain Diff
Fixed casting warning in sanguino
parent
2fd8c248
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Marlin/Configuration.h
+1
-1
1 addition, 1 deletion
Marlin/Configuration.h
Marlin/Sanguino/cores/arduino/pins_arduino.c
+12
-12
12 additions, 12 deletions
Marlin/Sanguino/cores/arduino/pins_arduino.c
with
13 additions
and
13 deletions
Marlin/Configuration.h
+
1
−
1
View file @
01d28c18
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
// Actual temperature must be close to target for this long before M109 returns success
// Actual temperature must be close to target for this long before M109 returns success
#define TEMP_RESIDENCY_TIME 10 // 30 // (seconds) 30 seconds was too long
#define TEMP_RESIDENCY_TIME 10 // 30 // (seconds) 30 seconds was too long
#define TEMP_HYSTERESIS 3 // (C
�
) range of +/- temperatures considered "close" to the target one
#define TEMP_HYSTERESIS 3 // (
deg
C) range of +/- temperatures considered "close" to the target one
// The minimal temperature defines the temperature below which the heater will not be enabled It is used
// The minimal temperature defines the temperature below which the heater will not be enabled It is used
// to check that the wiring to the thermistor is not broken.
// to check that the wiring to the thermistor is not broken.
...
...
This diff is collapsed.
Click to expand it.
Marlin/Sanguino/cores/arduino/pins_arduino.c
+
12
−
12
View file @
01d28c18
...
@@ -67,28 +67,28 @@
...
@@ -67,28 +67,28 @@
const
uint8_t
PROGMEM
port_to_mode_PGM
[]
=
const
uint8_t
PROGMEM
port_to_mode_PGM
[]
=
{
{
NOT_A_PORT
,
NOT_A_PORT
,
&
DDRA
,
(
uint8_t
)
&
DDRA
,
&
DDRB
,
(
uint8_t
)
&
DDRB
,
&
DDRC
,
(
uint8_t
)
&
DDRC
,
&
DDRD
,
(
uint8_t
)
&
DDRD
,
};
};
const
uint8_t
PROGMEM
port_to_output_PGM
[]
=
const
uint8_t
PROGMEM
port_to_output_PGM
[]
=
{
{
NOT_A_PORT
,
NOT_A_PORT
,
&
PORTA
,
(
uint8_t
)
&
PORTA
,
&
PORTB
,
(
uint8_t
)
&
PORTB
,
&
PORTC
,
(
uint8_t
)
&
PORTC
,
&
PORTD
,
(
uint8_t
)
&
PORTD
,
};
};
const
uint8_t
PROGMEM
port_to_input_PGM
[]
=
const
uint8_t
PROGMEM
port_to_input_PGM
[]
=
{
{
NOT_A_PORT
,
NOT_A_PORT
,
&
PINA
,
(
uint8_t
)
&
PINA
,
&
PINB
,
(
uint8_t
)
&
PINB
,
&
PINC
,
(
uint8_t
)
&
PINC
,
&
PIND
,
(
uint8_t
)
&
PIND
,
};
};
const
uint8_t
PROGMEM
digital_pin_to_port_PGM
[]
=
const
uint8_t
PROGMEM
digital_pin_to_port_PGM
[]
=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment