From 1478a098253725a40f65d0cbe33ab5ecdee4ffbc Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:10:31 -0500 Subject: [PATCH] spelling: minimum Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/comm/ble/gap_le_advert.h | 2 +- src/fw/drivers/flash/flash_api.c | 2 +- src/fw/services/common/comm_session/session_send_buffer.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fw/comm/ble/gap_le_advert.h b/src/fw/comm/ble/gap_le_advert.h index d3290ae0..bc7b704c 100644 --- a/src/fw/comm/ble/gap_le_advert.h +++ b/src/fw/comm/ble/gap_le_advert.h @@ -92,7 +92,7 @@ typedef void (*GAPLEAdvertisingJobUnscheduleCallback)(GAPLEAdvertisingJobRef job //! payload. //! @param terms A combination of minimum advertisement interval, maximum advertisement //! interval and duration. Each term is run in the order that they appear in the terms array. -//! The minimum advertisement interval for each term must be at minumum 32 slots (20ms), or +//! The minimum advertisement interval for each term must be at minimum 32 slots (20ms), or //! 160 slots (100ms) when there is a scan response. The maximum advertisement interval must //! be larger than or equal to its corresponding min_interval_slots. The duration is the //! minimum number of seconds that the term will be active. The sum of all the durations is diff --git a/src/fw/drivers/flash/flash_api.c b/src/fw/drivers/flash/flash_api.c index 4576efde..339b4104 100644 --- a/src/fw/drivers/flash/flash_api.c +++ b/src/fw/drivers/flash/flash_api.c @@ -187,7 +187,7 @@ TimerID flash_api_get_erase_poll_timer_for_test(void) { //! Assumes that s_flash_lock is held. static void prv_erase_pause(void) { if (s_erase.in_progress && !s_erase.suspended) { - // If an erase is in progress, make sure it gets at least a mininum time slice to progress. + // If an erase is in progress, make sure it gets at least a minimum time slice to progress. // If not, the successive kicking of the suspend timer could starve it out completely psleep(100); task_watchdog_bit_set(s_erase.task); diff --git a/src/fw/services/common/comm_session/session_send_buffer.h b/src/fw/services/common/comm_session/session_send_buffer.h index 9e017ac7..c9547358 100644 --- a/src/fw/services/common/comm_session/session_send_buffer.h +++ b/src/fw/services/common/comm_session/session_send_buffer.h @@ -34,7 +34,7 @@ size_t comm_session_send_buffer_get_max_payload_length(const CommSession *sessio //! is fine if bt_lock() is held. //! @param session The session to which the message should be sent. //! @param endpoint_id The Pebble Protocol endpoint ID to send the message to. -//! @param required_free_length The number of bytes of free space the caller needs at minumum. Once +//! @param required_free_length The number of bytes of free space the caller needs at minimum. Once //! the function returns with `true`, the amount of space (or more) is guaranteed to be available. //! @param timeout_ms The maximum duration to wait for the send buffer to become available with the //! required number of bytes of free space.