From 6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Fri, 29 Jan 2021 23:35:16 -0800 Subject: [PATCH] Include stdbool.h in uart.h (#11728) --- drivers/avr/uart.h | 1 + 1 file changed, 1 insertion(+) 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 @@ #pragma once #include +#include void uart_init(uint32_t baud);