From 1fcda4287c27087854156ff776c233668a34f8cc Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 10:55:18 -0500 Subject: [PATCH] spelling: have Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/graphics_line.c | 2 +- src/fw/board/boards/board_silk.c | 2 +- tests/fw/services/health/test_health.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fw/applib/graphics/graphics_line.c b/src/fw/applib/graphics/graphics_line.c index 49c2fc68..d16dbf7c 100644 --- a/src/fw/applib/graphics/graphics_line.c +++ b/src/fw/applib/graphics/graphics_line.c @@ -380,7 +380,7 @@ static bool prv_calc_far_points(GPointPrecise *p0, GPointPrecise *p1, Fixed_S16_ } // Since we already rotated the vector by 90 degrees, delta x is actually delta y - // therefore if x is bigger than y we have have vertical dominance + // therefore if x is bigger than y we have vertical dominance if (ABS(dx_fixed) > ABS(dy_fixed)) { return true; } diff --git a/src/fw/board/boards/board_silk.c b/src/fw/board/boards/board_silk.c index ad9296c5..1f787d84 100644 --- a/src/fw/board/boards/board_silk.c +++ b/src/fw/board/boards/board_silk.c @@ -61,7 +61,7 @@ CREATE_DMA_STREAM(2, 6); // DMA2_STREAM4_DEVICE - DFSDM CREATE_DMA_STREAM(2, 7); // DMA2_STREAM7_DEVICE - QSPI // DMA Requests -// - On DMA1 we just have have "Sharp SPI TX" so just set its priority to "High" since it doesn't +// - On DMA1 we just have "Sharp SPI TX" so just set its priority to "High" since it doesn't // matter. // - On DMA2 we have "Accessory UART RX", "Debug UART RX", "Dialog SPI RX", "DIALOG SPI TX", // "DFSDM", and "QSPI". We want "DFSDM", "Accessory UART RX", "Debug UART RX", and "Dialog SPI RX" diff --git a/tests/fw/services/health/test_health.c b/tests/fw/services/health/test_health.c index ea4b3341..7d04e441 100644 --- a/tests/fw/services/health/test_health.c +++ b/tests/fw/services/health/test_health.c @@ -1434,7 +1434,7 @@ void test_health__avg_partial_days(void) { // --- // Compute weekend HealthMetricActiveSeconds average from 4am to 9am. This should use the - // daily totals since we don't havce 15-minute averages maintained for this metric + // daily totals since we don't have 15-minute averages maintained for this metric exp_value = (k_daily_total * 5 * MINUTES_PER_HOUR) / MINUTES_PER_DAY; // Since "today" is Monday, going back 24 hours puts us on a weekend