Fixed indentation
This commit is contained in:
parent
bcae00c0f3
commit
5d38b97254
18
adc.hpp
18
adc.hpp
@ -69,15 +69,15 @@ class AdcImpl {
|
|||||||
static_assert(validPrescaler, "Invalid prescaler");
|
static_assert(validPrescaler, "Invalid prescaler");
|
||||||
|
|
||||||
// clang-format off
|
// clang-format off
|
||||||
switch (Cfg::PRESCALER) {
|
switch (Cfg::PRESCALER) {
|
||||||
case 2: return 1;
|
case 2: return 1;
|
||||||
case 4: return 2;
|
case 4: return 2;
|
||||||
case 8: return 3;
|
case 8: return 3;
|
||||||
case 16: return 4;
|
case 16: return 4;
|
||||||
case 32: return 5;
|
case 32: return 5;
|
||||||
case 64: return 6;
|
case 64: return 6;
|
||||||
case 128: return 7;
|
case 128: return 7;
|
||||||
}
|
}
|
||||||
// clang-format on
|
// clang-format on
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user