-
Notifications
You must be signed in to change notification settings - Fork 179
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
Changes #202
base: level3
Are you sure you want to change the base?
Changes #202
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.
really good PR. just some nitpicks to change. also maybe look into the macros we use for error logging/returning in our onboarding doc (e.g. LOG_IF_ERROR_CODE macro)
lm75bd/lm75bd.h
Outdated
@@ -5,7 +5,7 @@ | |||
#include <stdint.h> | |||
|
|||
/* LM75BD I2C Device Address */ | |||
#define LM75BD_OBC_I2C_ADDR /* Define the address here */ | |||
#define LM75BD_OBC_I2C_ADDR 0b1001111 |
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.
convert this value to hex for readability
services/thermal_mgr/thermal_mgr.c
Outdated
while (1) | ||
{ | ||
|
||
thermal_mgr_event_t data = {0}; |
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.
nitpick: rename to event for clarity
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
Onboarding