-
Notifications
You must be signed in to change notification settings - Fork 106
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
Feature/support i2c ng esp box #354
Conversation
aa94350
to
3284337
Compare
@@ -7,6 +7,7 @@ | |||
#include "driver/gpio.h" | |||
#include "driver/ledc.h" | |||
#include "driver/spi_master.h" | |||
#include "driver/i2c_master.h" |
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.
Should we remove #include "driver/i2c.h"
from esp-box.h?
@@ -1,5 +1,5 @@ | |||
|
|||
version: "3.1.0" | |||
version: "3.2.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.
This is actually a breaking change, because from now on, the users cannot use I2C legacy driver with this BSP.
The whole topic is probably more complicated than we anticipated, we can discuss offline
public: true | ||
|
||
button: | ||
version: ">=2.5" | ||
public: true | ||
|
||
icm42670: | ||
version: "^1" | ||
version: "^2" |
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.
FYI: bumping major version of a public dependency is considered a breaking change :(
@espzav This board is obsolete now. Do you want to finish the PR or can we close? |
The board is obsolete. |
ESP-BSP Pull Request checklist
Change description
The first PR, how to support I2C NG driver in BSP (esp-box).