-
Notifications
You must be signed in to change notification settings - Fork 7
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
Yann/feature/ble/deep sleep in advertising data #1463
Yann/feature/ble/deep sleep in advertising data #1463
Conversation
5cfacc4
to
fffd3ca
Compare
📈 Changes Impact Analysis Report📌 Info
🤖 Firmware impact analysis
Click to show memory sections
🔬 Detailed impact analysisClick to show detailed analysis for all targets
🗺️ Map files diff output
|
📈 Changes Impact Analysis Report📌 Info
🤖 Firmware impact analysis
Click to show memory sections
🔬 Detailed impact analysisClick to show detailed analysis for all targets
🗺️ Map files diff output
|
Quality Gate passedIssues Measures |
🔖 Version comparison
|
uint8_t version_major {}; | ||
uint8_t version_minor {}; | ||
uint16_t version_revision {}; | ||
uint8_t is_deep_sleeping {}; |
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.
uint8_t version_major {}; | |
uint8_t version_minor {}; | |
uint16_t version_revision {}; | |
uint8_t is_deep_sleeping {}; | |
uint8_t is_deep_sleeping {}; | |
uint8_t version_major {}; | |
uint8_t version_minor {}; | |
uint16_t version_revision {}; |
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 👍
je propose de changer l'ordre des data mais j'imagine que ce n'est pas possible? parce qu'on ne saura pas les décrypter?
_internal_values = { | ||
battery, | ||
is_charging, | ||
version_major, | ||
version_minor, | ||
static_cast<uint8_t>(version_revision >> 8), | ||
static_cast<uint8_t>(version_revision), | ||
is_deep_sleeping, |
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.
_internal_values = { | |
battery, | |
is_charging, | |
version_major, | |
version_minor, | |
static_cast<uint8_t>(version_revision >> 8), | |
static_cast<uint8_t>(version_revision), | |
is_deep_sleeping, | |
_internal_values = { | |
battery, | |
is_charging, | |
is_deep_sleeping, | |
version_major, | |
version_minor, | |
static_cast<uint8_t>(version_revision >> 8), | |
static_cast<uint8_t>(version_revision), |
No description provided.