Update down-the-stack-book/src/the_hal.md

Co-authored-by: Tanks Transfeld <Mirabellensaft@users.noreply.github.com>
This commit is contained in:
Jonathan Pallant 2023-03-23 13:53:58 +00:00 committed by GitHub
parent 3ae002e00b
commit fd981f98dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ This differs widely across MCUs (ST, Nordic, Espressif, Atmel, etc). Some MCUs (
## Correctness by design
* HALs want to make it hard to do the wrong thing
* Is a UART driver any use, if you haven't configured at least one TX pin and one RX pin?
* Is a UART driver of any use, if you haven't configured at least one TX pin and one RX pin?
* Should the UART driver check you've done that?
---