Replaced 'boolean' with 'bool'

This commit is contained in:
Christian Hubmann 2024-08-06 22:50:53 +02:00
parent 589235ea7e
commit b10dbbf407

View file

@ -24,7 +24,7 @@ void set_bit(uint8_t *const data, const uint8_t position, const bool on) {
}
}
boolean get_bit(const uint8_t data, const uint8_t position) { return (data & (1 << position)) != 0; }
bool get_bit(const uint8_t data, const uint8_t position) { return (data & (1 << position)) != 0; }
void HitachiClimate::set_checksum_() {
uint8_t sum = 62;