-
Notifications
You must be signed in to change notification settings - Fork 90
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
feat(Examples,MiscDrivers): Add ADT7320 Temperature Sensor Driver and Example for MAX32665 #860
Conversation
ADT7320 example added to the examples.
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.
Thanks @ersahatmacaa, looks good. A few minor change requests below related to the build system.
Also, FYI the include paths were missing for the TempSensor folder.
I have not done a good job of documenting this yet, but the way you can fix this is by adding the folder to the library's libinfo.json file, and then running MSDKGen.
I updated libinfo here: 8d8118b
and then ran MSDKGen on the project: 32ce059
I'll add some better documentation on the libinfo.json files in our contributing guidelines in the future.
Moved adt7320 drivers from Libraries/Boards/MAX32665/xx/board.mk to project.mk.
Typo on ReadMe.md fixed
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.
Thanks @ersahatmacaa, nice work!
Description
Implemented a new temperature monitoring example project for the MAX32665, which operates with the ADT7320 SPI temperature sensor. The example project located under Examples\MAX32665 and, the sensor drivers under Libraries\MiscDrivers\TempSensor directory.