Scott Lahteine
6bead0c1b0
Shorter paths to HAL, ExtUI (#17156 )
4 yıl önce
Scott Lahteine
bfad23d3e2
(c) 2020
4 yıl önce
InsanityAutomation
0fcf2b1110
Quad Z stepper support (#16277 )
4 yıl önce
Scott Lahteine
d80ef43c19
Followup to es int patch
5 yıl önce
Giuliano Zaro
35cd545106
Use prior endstop pin-to-interrupt macros (#15771 )
5 yıl önce
Giuliano Zaro
65ef774e8d
Fix mega Port J endstop interrupts (#15758 )
5 yıl önce
Scott Lahteine
35b1149d96
Patch es int tests for Arduino 1.8.10
5 yıl önce
Scott Lahteine
f01f0d1956
Drop C-style 'void' argument
5 yıl önce
Scott Lahteine
a06010e08a
Macrofy attachInterrupt
5 yıl önce
Scott Lahteine
a2ba0aaaac
HAL include and other adjustments (#14525 )
5 yıl önce
Scott Lahteine
93cd66ac11
Tweaky change from (C) to (c)
5 yıl önce
Scott Lahteine
3d9d72e8db
Include order, spacing, etc.
5 yıl önce
Scott Lahteine
ad4ffa1d2f
Use C++ language supported 'nullptr' (#13944 )
5 yıl önce
Scott Lahteine
0feeef2604
Update copyright in headers
5 yıl önce
Scott Lahteine
f5eab912ed
Apply #pragma once, misc cleanup (#12322 )
* Apply #pragma once in headers
* Adjust some thermistors formatting
* Misc cleanup and formatting
6 yıl önce
Scott Lahteine
bfcf570d68
Try ISR_ALIASOF for Endstop Interrupts
6 yıl önce
Scott Lahteine
ee53f7d813
Revert header reorg.
6 yıl önce
Scott Lahteine
0dedb3e139
Reorganize some core headers (#11983 )
6 yıl önce
Holger Müller
1a6f2b29b8
Add support for Triple-Z steppers/endstops
6 yıl önce
Scott Lahteine
99591dc20c
Filter endstops state at all times (#11066 )
6 yıl önce
etagle
569df3fc0c
Fix interrupt-based endstop detection
- Also implemented real endstop reading on interrupt.
6 yıl önce
Scott Lahteine
c173a31060
Fix some compile warnings
6 yıl önce
Chris Pepper
cc6d41e1d3
Use a macro for HAL header redirection (#10380 )
6 yıl önce
Scott Lahteine
723f2a77f6
Implement support for Dual X and Y endstops
7 yıl önce
Scott Lahteine
54326fb06a
HAL updates
7 yıl önce
Christopher Pepper
4b16fa3272
Implement HAL and apply macros across code-base
Implement AVR Platform
7 yıl önce
Scott Lahteine
081bf1f879
Patch #else / #endif comments
7 yıl önce
Scott Lahteine
25a6bfa7ed
Add and apply WITHIN macro
7 yıl önce
Scott Lahteine
25d0c167bd
More detailed static_assert messages
8 yıl önce
Scott Lahteine
eb120e518c
Followup to new endstop interrupts feature
- Fix typos, verbiage
- Fix naming of `setup_endstop_interrupts`
- Some formatting, indentation, spacing
8 yıl önce
AnHardt
f3eee02596
Introduce endstop interrupts
If ENDSTOP_INTERRUPTS_FEATURE is enabled this tries to set up interrupt routines
for all used endstop pins. If this worked without errors, `endstops.update()` is called
only if one of the endstops changed its state.
The new interrupt routines do not really check the endstops and react upon them. All what they
do, is to set a flag if it makes sense to call the endstop test we are used to.
This can be used on:
* ARM (DUE) based boards - all pins can raise interrupts,
* RAMPS - all 6 endstop pins plus some other on EXT-2 can raise interrupts,
* RAMPS based boards - as long the designers did not change the pins for the endstops or at least left enough,
* all boards, if there are enough pins that can raise interrupts, and you are willing/able to swap with pins dedicated to other purpose.
8 yıl önce