-
Notifications
You must be signed in to change notification settings - Fork 290
Initial hardware support for Rubik pi #1989
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
Show all changes
5 commits
Select commit
Hold shift + click to select a range
40371ff
initial rubik support, waiting on VPN to test
samfreund 50bf526
thermal command for Rubik Pi 3
samfreund 231a86a
update comment regarding NPU metrics
samfreund 465b22b
Update QCS6490Cmds.java
samfreund 897cf20
Merge branch 'main' into initial-rubik-support
mcm001 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
40 changes: 40 additions & 0 deletions
40
photon-core/src/main/java/org/photonvision/common/hardware/metrics/cmds/QCS6490Cmds.java
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 |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| /* | ||
| * Copyright (C) Photon Vision. | ||
| * | ||
| * This program is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU General Public License as published by | ||
| * the Free Software Foundation, either version 3 of the License, or | ||
| * (at your option) any later version. | ||
| * | ||
| * This program is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU General Public License for more details. | ||
| * | ||
| * You should have received a copy of the GNU General Public License | ||
| * along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
| */ | ||
|
|
||
| package org.photonvision.common.hardware.metrics.cmds; | ||
|
|
||
| import org.photonvision.common.configuration.HardwareConfig; | ||
|
|
||
| public class QCS6490Cmds extends LinuxCmds { | ||
| /** Applies pi-specific commands, ignoring any input configuration */ | ||
| public void initCmds(HardwareConfig config) { | ||
| super.initCmds(config); | ||
|
|
||
| /* Thermal zone information can be found in /sys/class/thermal/thermal_zone* directories: | ||
| * zone/type: Contains the thermal zone type/name (e.g., "acpi", "x86_pkg_temp") | ||
| * zone/temp: Current temperature in millidegrees Celsius (divide by 1000 for actual temp) | ||
| * zone/policy: Thermal governor policy (e.g., "step_wise", "power_allocator") | ||
| * Each thermal_zone* directory represents a different temperature sensor in the system | ||
| */ | ||
|
|
||
| cpuTemperatureCommand = | ||
| "cat /sys/class/thermal/thermal_zone10/temp | awk '{printf \"%.1f\", $1/1000}'"; | ||
|
|
||
| // TODO: NPU usage, doesn't seem to be in the same place as the opi. We're gonna just wait on QC | ||
| // to get back to us on this one. | ||
| } | ||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.