From 1ecb14eb8ae3ffbc5ef4b181febbf9dd4d209ffc Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:52:33 -0500 Subject: [PATCH] spelling: integrity Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/drivers/flash/mt25q.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/drivers/flash/mt25q.c b/src/fw/drivers/flash/mt25q.c index 87d7fe5c..76f0d92b 100644 --- a/src/fw/drivers/flash/mt25q.c +++ b/src/fw/drivers/flash/mt25q.c @@ -129,7 +129,7 @@ status_t flash_impl_unprotect(void) { static void prv_set_high_drive_strength(void) { // Match the impedance of the traces (~50 ohms) by configuring the drive strength of the data - // output pins on the MT25Q to the 45 ohm setting This avoids signal integreity issues. This is + // output pins on the MT25Q to the 45 ohm setting This avoids signal integrity issues. This is // done by setting bits 2:0 in the "Enhanced Volatile Configuration Register" to 101b. const uint8_t read_instruction = 0x65; const uint8_t write_instruction = 0x61;