You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (auto &tmp : spi) {
AD_LOGD("DriverPins::begin::SPI::begin");
if (tmp.function == PinFunction::SD)
if (sd_active)
result &= tmp.begin();
else
result &= tmp.begin();
}
I think that adding braces make code cleaer effectively
for (auto &tmp : spi) {
AD_LOGD("DriverPins::begin::SPI::begin");
if (tmp.function == PinFunction::SD)
{
if (sd_active)
result &= tmp.begin();
else
result &= tmp.begin();
}
}
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Error in title compiling main stream:
I think that adding braces make code cleaer effectively
The text was updated successfully, but these errors were encountered: