-
Notifications
You must be signed in to change notification settings - Fork 171
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
Adrian Ho UW Orbital Onboarding PR #67
Conversation
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.
Looks good just a couple of small changes
services/thermal_mgr/thermal_mgr.h
Outdated
@@ -5,6 +5,8 @@ | |||
|
|||
typedef enum { | |||
THERMAL_MGR_EVENT_MEASURE_TEMP_CMD, | |||
THERMAL_MGR_EVENT_OVER_TEMP, | |||
THERMAL_MGR_EVENT_AT_TEMP |
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.
This isn't used anywhere
services/thermal_mgr/thermal_mgr.c
Outdated
} | ||
|
||
void osHandlerLM75BD(void) { | ||
/* Implement this function */ | ||
thermal_mgr_event_t interrupt; | ||
interrupt.type = THERMAL_MGR_EVENT_OVER_TEMP; |
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.
it would be better to name the type something else THERMAL_MGR_EVENT_OVER_TEMP
is misleading since the interrupt would happen when we return to safe operating conditions as well
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.
LGTM
Purpose
Explain the purpose of the PR here, including references to any existing Notion tasks.
New Changes
Testing
Outstanding Changes