Replace all remaining 'boolean' with 'bool'

This commit is contained in:
AnHardt
2017-01-13 13:03:52 +01:00
parent f6858d9974
commit fa26767efe
3 changed files with 5 additions and 5 deletions

View File

@ -227,7 +227,7 @@ static void finISR(timer16_Sequence_t timer) {
#endif
}
static boolean isTimerActive(timer16_Sequence_t timer) {
static bool isTimerActive(timer16_Sequence_t timer) {
// returns true if any servo is active on this timer
for (uint8_t channel = 0; channel < SERVOS_PER_TIMER; channel++) {
if (SERVO(timer, channel).Pin.isActive)