-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[Silabs] Add Silabs Platform abstraction #26196
[Silabs] Add Silabs Platform abstraction #26196
Conversation
527b5b2
to
53336ec
Compare
PR #26196: Size comparison from 65f075c to 53336ec Full report (1 build for cc32xx)
|
53336ec
to
1e50589
Compare
PR #26196: Size comparison from de0dfcf to 1e50589 Increases (1 build for nrfconnect)
Decreases (1 build for cc32xx)
Full report (7 builds for cc32xx, mbed, nrfconnect, qpg)
|
e346d89
to
2faba3b
Compare
PR #26196: Size comparison from de0dfcf to 2faba3b Full report (3 builds for mbed, qpg)
|
{ | ||
if (led >= SL_SIMPLE_LED_COUNT) | ||
{ | ||
return 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.
use false
instead of integer for bool value?
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.
done
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.
Diff does not show it as done....
CHIP_ERROR SilabsPlatform::ToggleLed(uint8_t led) override | ||
{ | ||
// TODO add range check ? | ||
RSI_Board_LED_Toggle(led) return CHIP_NO_ERROR; |
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.
is there a ;
missing here?
Add Abstraction of SDK used in our examples