We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2720ef5 commit 35d2d6eCopy full SHA for 35d2d6e
libraries/OPAMP/src/OPAMP.cpp
@@ -36,7 +36,7 @@ bool OpampClass::initPins(uint8_t channel_mask) {
36
return false;
37
}
38
// Check the 4 possible channels
39
- for(uint8_t i = 0; i < 4; i++) {
+ for (uint8_t i = 0; i < 4; i++) {
40
// was this channel selected?
41
if (!(channel_mask & (1u << i))) {
42
continue;
@@ -82,7 +82,7 @@ bool OpampClass::begin(OpampSpeedMode speed) {
82
83
84
bool OpampClass::begin(uint8_t channel_mask, OpampSpeedMode speed) {
85
- if(!initPins(channel_mask)) {
+ if (!initPins(channel_mask)) {
86
87
88
initOpamp(speed, channel_mask);
0 commit comments