diff options
author | Drashna Jaelre <drashna@live.com> | 2021-01-29 23:35:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 18:35:16 +1100 |
commit | 6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0 (patch) | |
tree | d36f5678b91723613d91cec9f47c46ff16f32036 /drivers/avr/uart.h | |
parent | 4fe4087d4abd13a0f7b5754a1766151f02daf3fc (diff) | |
download | qmk_firmware-6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0.tar.gz qmk_firmware-6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0.zip |
Include stdbool.h in uart.h (#11728)
Diffstat (limited to 'drivers/avr/uart.h')
-rw-r--r-- | drivers/avr/uart.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/avr/uart.h b/drivers/avr/uart.h index d5ec563db..602eb3d8b 100644 --- a/drivers/avr/uart.h +++ b/drivers/avr/uart.h | |||
@@ -24,6 +24,7 @@ | |||
24 | #pragma once | 24 | #pragma once |
25 | 25 | ||
26 | #include <stdint.h> | 26 | #include <stdint.h> |
27 | #include <stdbool.h> | ||
27 | 28 | ||
28 | void uart_init(uint32_t baud); | 29 | void uart_init(uint32_t baud); |
29 | 30 | ||