-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check firmware version before homing (#112)
* feat(model): save firmware version used for calibration on model * feat(model): validate against current firmware version * fix: move mcu get_status to identify handler * fixup! feat(model): validate against current firmware version * fix: remove leftover adxl stuff This became visible after adding the type to scanner * chore: add recalibration docs url
- Loading branch information
Showing
5 changed files
with
111 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
from typing import final | ||
from reactor import Reactor | ||
|
||
@final | ||
class ClockSync: | ||
pass | ||
|
||
@final | ||
class SecondarySync: | ||
def __init__(self, _, __): | ||
def __init__(self, reactor: Reactor, main_sync: ClockSync) -> None: | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters