-
Notifications
You must be signed in to change notification settings - Fork 180
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
Completed Onboarding #207
base: level3
Are you sure you want to change the base?
Completed Onboarding #207
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.
small changes
lm75bd/lm75bd.c
Outdated
@@ -28,6 +28,28 @@ error_code_t lm75bdInit(lm75bd_config_t *config) { | |||
error_code_t readTempLM75BD(uint8_t devAddr, float *temp) { | |||
/* Implement this driver function */ | |||
|
|||
error_code_t errCode; |
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.
don't need this in this function
services/thermal_mgr/thermal_mgr.c
Outdated
if (xQueueSend(thermalMgrQueueHandle, event, 0) == pdTRUE){ | ||
return ERR_CODE_QUEUE_FULL; | ||
} |
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 should be if its not pdTRUE (queue is full if it fails)
Purpose
Explain the purpose of the PR here, including references to any existing Notion tasks.
New Changes
Testing
Outstanding Changes