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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
65ef774e
Commit
65ef774e
authored
5 years ago
by
Giuliano Zaro
Committed by
Scott Lahteine
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix mega Port J endstop interrupts (#15758)
parent
a920b104
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Marlin/src/HAL/HAL_AVR/endstop_interrupts.h
+5
-5
5 additions, 5 deletions
Marlin/src/HAL/HAL_AVR/endstop_interrupts.h
buildroot/share/pin_interrupt_test/pin_interrupt_test.ino
+1
-1
1 addition, 1 deletion
buildroot/share/pin_interrupt_test/pin_interrupt_test.ino
with
6 additions
and
6 deletions
Marlin/src/HAL/HAL_AVR/endstop_interrupts.h
+
5
−
5
View file @
65ef774e
...
...
@@ -46,16 +46,16 @@ void endstop_ISR() { endstops.update(); }
/**
* Patch for pins_arduino.h (...\Arduino\hardware\arduino\avr\variants\mega\pins_arduino.h)
*
* These macros for the Arduino MEGA do not include the two connected pins on Port J (D1
3
, D1
4
).
* These macros for the Arduino MEGA do not include the two connected pins on Port J (D1
4
, D1
5
).
* So we extend them here because these are the normal pins for Y_MIN and Y_MAX on RAMPS.
* There are more PCI-enabled processor pins on Port J, but they are not connected to Arduino MEGA.
*/
#if defined(ARDUINO_AVR_MEGA2560) || defined(ARDUINO_AVR_MEGA)
#define digitalPinHasPCICR(p) (WITHIN(p, 10, 15) || WITHIN(p, 50, 53) || WITHIN(p, 62, 69))
#define moreDigitalPinToPCICR(p) digitalPinToPCICR(WITHIN(p, 1
3
, 1
4
) ? 10 : p)
#define moreDigitalPinToPCICRbit(p)
digitalPinToPCICRbit(p == 13 ? 10 : p == 14 ? 15 : p
)
#define moreDigitalPinToPCMSK(p)
digitalPinToPCMSK( p == 13 ? 10 : p == 14 ? 15 : p
)
#define moreDigitalPinToPCMSKbit(p) digitalPinToPCMSKbit(
p == 13 ? 10 : p == 14 ? 51
: p)
#define moreDigitalPinToPCICR(p) digitalPinToPCICR(WITHIN(p, 1
4
, 1
5
) ? 10 : p)
#define moreDigitalPinToPCICRbit(p)
(WITHIN(p, 14, 15) ? 1 : digitalPinToPCICRbit(p)
)
#define moreDigitalPinToPCMSK(p)
(WITHIN(p, 14, 15) ? (&PCMSK1) : digitalPinToPCMSK(p)
)
#define moreDigitalPinToPCMSKbit(p) digitalPinToPCMSKbit(
WITHIN(p, 14, 15) ? (p)+36
: p)
#endif
...
...
This diff is collapsed.
Click to expand it.
buildroot/share/pin_interrupt_test/pin_interrupt_test.ino
+
1
−
1
View file @
65ef774e
...
...
@@ -2,7 +2,7 @@
// Compile with the same build settings you'd use for Marlin.
#if defined(ARDUINO_AVR_MEGA2560) || defined(ARDUINO_AVR_MEGA)
#define moreDigitalPinToPCICR(p) digitalPinToPCICR(WITHIN(p, 1
3
, 1
4
) ? 10 : p)
#define moreDigitalPinToPCICR(p) digitalPinToPCICR(WITHIN(p, 1
4
, 1
5
) ? 10 : p)
#else
#define moreDigitalPinToPCICR(p) digitalPinToPCICR(p)
#endif
...
...
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