-
Notifications
You must be signed in to change notification settings - Fork 63
Implement motor test plugin #1016
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -27,7 +27,9 @@ | |
| from ardupilot_methodic_configurator.backend_internet import download_file_from_url | ||
| from ardupilot_methodic_configurator.data_model_ardupilot_parameter import ArduPilotParameter | ||
| from ardupilot_methodic_configurator.data_model_configuration_step import ConfigurationStepProcessor | ||
| from ardupilot_methodic_configurator.data_model_motor_test import MotorTestDataModel | ||
| from ardupilot_methodic_configurator.data_model_par_dict import Par, ParDict, is_within_tolerance | ||
| from ardupilot_methodic_configurator.plugin_constants import PLUGIN_MOTOR_TEST | ||
| from ardupilot_methodic_configurator.tempcal_imu import IMUfit | ||
|
|
||
| # Type aliases for callback functions used in workflow methods | ||
|
|
@@ -1593,3 +1595,28 @@ def parse_mandatory_level_percentage(self, text: str) -> tuple[int, str]: | |
| return 0, tooltip.format(current_file=current_file) | ||
|
|
||
| # frontend_tkinter_parameter_editor_documentation_frame.py API end | ||
|
|
||
| # plugin API begin | ||
|
|
||
| def get_plugin(self, filename: str) -> Optional[dict]: | ||
| return self._local_filesystem.get_plugin(filename) | ||
|
|
||
| def create_plugin_data_model(self, plugin_name: str) -> Optional[object]: | ||
|
||
| """ | ||
| Create and return a data model for the specified plugin. | ||
|
|
||
| Args: | ||
| plugin_name: The name of the plugin to create a data model for | ||
|
|
||
| Returns: | ||
| The data model instance, or None if plugin not supported or requirements not met | ||
|
|
||
| """ | ||
| if plugin_name == PLUGIN_MOTOR_TEST: | ||
| if not self.is_fc_connected: | ||
| return None | ||
| return MotorTestDataModel(self._flight_controller, self._local_filesystem) | ||
| # Add more plugins here in the future | ||
| return None | ||
|
|
||
| # plugin API end | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The return type
Optional[object]is too generic and provides no type safety for callers. Consider using a Union type of specific model classes (e.g.,Optional[MotorTestDataModel]) or defining a base class/protocol for plugin data models.