-
-
Notifications
You must be signed in to change notification settings - Fork 39.6k
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
Rework paths for eeprom locations. #17326
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.
platforms/chibios/flash.mk
→ platforms/chibios/drivers/flash/flash.mk
move looks like a mistake.
And apparently some include path adjustment is needed to make #include "flash_stm32.h"
work.
Yeah, the file move was in error. |
It's the test itself that is erroring out. Edit: Digging into this a bit more, and it looks like the tests assume/need the chibiOS driver paths for both the c and h files. Yay. In the couple of files, full path includes will fix the errors: #include "platforms/chibios/drivers/flash/flash_stm32.h"
#include "platforms/chibios/drivers/eeprom/eeprom_stm32.h" However, that introduces additional errors. Name:
|
Yeah, those tests are kinda gross. |
For the rp2040 PR I took the approach to move vendor specific drivers under |
* Rework paths for eeprom locations. * File relocation. * Wrong file move. * Fixup test paths.
Description
NVRAM/Wear-leveling prepwork.
Types of Changes
Checklist