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
35cd5451
Commit
35cd5451
authored
5 years ago
by
Giuliano Zaro
Committed by
Scott Lahteine
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Use prior endstop pin-to-interrupt macros (#15771)
parent
1fe0646d
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
+41
-8
41 additions, 8 deletions
Marlin/src/HAL/HAL_AVR/endstop_interrupts.h
buildroot/share/pin_interrupt_test/pin_interrupt_test.ino
+5
-4
5 additions, 4 deletions
buildroot/share/pin_interrupt_test/pin_interrupt_test.ino
with
46 additions
and
12 deletions
Marlin/src/HAL/HAL_AVR/endstop_interrupts.h
+
41
−
8
View file @
35cd5451
...
...
@@ -51,20 +51,53 @@ void endstop_ISR() { endstops.update(); }
* 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, 14, 15) ? 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)
#undef digitalPinToPCICR
#define digitalPinToPCICR(p) (digitalPinHasPCICR(p) ? (&PCICR) : nullptr)
#undef digitalPinToPCICRbit
#define digitalPinToPCICRbit(p) (WITHIN(p, 10, 13) || WITHIN(p, 50, 53) ? 0 : \
WITHIN(p, 14, 15) ? 1 : \
WITHIN(p, 62, 69) ? 2 : \
0)
#undef digitalPinToPCMSK
#define digitalPinToPCMSK(p) (WITHIN(p, 10, 13) || WITHIN(p, 50, 53) ? (&PCMSK0) : \
WITHIN(p, 14, 15) ? (&PCMSK1) : \
WITHIN(p, 62, 69) ? (&PCMSK2) : \
nullptr)
#undef digitalPinToPCMSKbit
#define digitalPinToPCMSKbit(p) (WITHIN(p, 10, 13) ? ((p) - 6) : \
(p) == 14 || (p) == 51 ? 2 : \
(p) == 15 || (p) == 52 ? 1 : \
(p) == 50 ? 3 : \
(p) == 53 ? 0 : \
WITHIN(p, 62, 69) ? ((p) - 62) : \
0)
#elif defined(__AVR_ATmega164A__) || defined(__AVR_ATmega164P__) || defined(__AVR_ATmega324A__) || \
defined(__AVR_ATmega324P__) || defined(__AVR_ATmega324PA__) || defined(__AVR_ATmega324PB__) || \
defined(__AVR_ATmega644A__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega1284__) || \
defined(__AVR_ATmega1284P__)
#define digitalPinHasPCICR(p) WITHIN(p, 0, NUM_DIGITAL_PINS)
#else
#error "Unsupported AVR variant!"
#endif
// Install Pin change interrupt for a pin. Can be called multiple times.
void
pciSetup
(
const
int8_t
pin
)
{
if
(
moreD
igitalPinToPCMSK
(
pin
)
!=
nullptr
)
{
SBI
(
*
moreD
igitalPinToPCMSK
(
pin
),
moreD
igitalPinToPCMSKbit
(
pin
));
// enable pin
SBI
(
PCIFR
,
moreD
igitalPinToPCICRbit
(
pin
));
// clear any outstanding interrupt
SBI
(
PCICR
,
moreD
igitalPinToPCICRbit
(
pin
));
// enable interrupt for the group
if
(
d
igitalPinToPCMSK
(
pin
)
!=
nullptr
)
{
SBI
(
*
d
igitalPinToPCMSK
(
pin
),
d
igitalPinToPCMSKbit
(
pin
));
// enable pin
SBI
(
PCIFR
,
d
igitalPinToPCICRbit
(
pin
));
// clear any outstanding interrupt
SBI
(
PCICR
,
d
igitalPinToPCICRbit
(
pin
));
// enable interrupt for the group
}
}
...
...
This diff is collapsed.
Click to expand it.
buildroot/share/pin_interrupt_test/pin_interrupt_test.ino
+
5
−
4
View file @
35cd5451
...
...
@@ -2,16 +2,17 @@
// 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, 14, 15) ? 10 : p)
#else
#define moreDigitalPinToPCICR(p) digitalPinToPCICR(p)
#undef digitalPinToPCICR
#define digitalPinToPCICR(p) ( ((p) >= 10 && (p) <= 15) || \
((p) >= 50 && (p) <= 53) || \
((p) >= 62 && (p) <= 69) ? (&PCICR) : nullptr)
#endif
void
setup
()
{
Serial
.
begin
(
9600
);
Serial
.
println
(
"PINs causing interrupts are:"
);
for
(
int
i
=
2
;
i
<
NUM_DIGITAL_PINS
;
i
++
)
{
if
(
moreD
igitalPinToPCICR
(
i
)
||
(
int
)
digitalPinToInterrupt
(
i
)
!=
-
1
)
{
if
(
d
igitalPinToPCICR
(
i
)
||
(
int
)
digitalPinToInterrupt
(
i
)
!=
-
1
)
{
for
(
int
j
=
0
;
j
<
NUM_ANALOG_INPUTS
;
j
++
)
{
if
(
analogInputToDigitalPin
(
j
)
==
i
)
{
Serial
.
print
(
'A'
);
...
...
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