Midnight Sun Firmware
Loading...
Searching...
No Matches
fota_timeout.h
1#pragma once
2
3/************************************************************************************************
4 * @file fota_timeout.h
5 *
6 * @brief FOTA Timeout
7 *
8 * @date 2025-06-14
9 * @author Midnight Sun Team #24 - MSXVI
10 ************************************************************************************************/
11
12/* Standard library Headers */
13#include <stdbool.h>
14
15/* Inter-component Headers */
16
17/* Intra-component Headers */
18
25/* @brief FOTA timeout in milliseconds */
26#define FOTA_TIMEOUT_MS 15000U
27
33bool fota_is_timed_out(void);
34
bool fota_is_timed_out(void)
Checks if FOTA has timed out, meaning no requests have been received.
Definition: fota_timeout.c:18