Firmware Over the Air (FOTA) Update system.
More...
|
#define | PAYLOAD_SIZE 256 |
|
#define | NETWORK_BUFFER_SIZE 1024U |
|
#define | PACKET_NUM 8 |
|
Firmware Over the Air (FOTA) Update system.
◆ FotaError
FOTA Error code definitions.
Enumerator |
---|
FOTA_ERROR_SUCCESS | Success error code
|
FOTA_RESOURCE_EXHAUSTED | Resource exhausted error code
|
FOTA_ERROR_INVALID_ARGS | Invalid arguments error code
|
FOTA_ERROR_INTERNAL_ERROR | Internal issue error code
|
FOTA_ERROR_CRC_MISMATCH | CRC mismatch error code
|
◆ network_buffer_empty()
Checks if the network buffer is empty.
- Parameters
-
network_buffer | Pointer to the network buffer |
- Returns
- TRUE if network buffer is empty FALSE if network buffer has data
◆ network_buffer_full()
Checks if the network buffer is full.
- Parameters
-
network_buffer | Pointer to the network buffer |
- Returns
- TRUE if network buffer is full FALSE if network buffer is not full
◆ network_buffer_init()
Initalizes circular buffer for use, by initalizing assocated structs.
- Parameters
-
network_buffer | Pointer to the network buffer |
- Returns
- FOTA_ERROR_SUCCESS if network buffer is initialized successfully FOTA_ERROR_INVALID_ARGS if one of the parameters are incorrect
◆ network_buffer_num_empty_slots()
uint16_t network_buffer_num_empty_slots |
( |
NetworkBuffer * |
network_buffer | ) |
|
Fetches the number of empty slots in the network buffer.
- Parameters
-
network_buffer | Pointer to the network buffer |
- Returns
- Number of empty slots in the network buffer
◆ network_buffer_num_items()
uint16_t network_buffer_num_items |
( |
NetworkBuffer * |
network_buffer | ) |
|
Fetches the number of items in the network buffer.
- Parameters
-
network_buffer | Pointer to the network buffer |
- Returns
- Number of items in the network buffer
◆ network_buffer_read()
Read data bytes.
- Parameters
-
network_buffer | Pointer to the network buffer |
data | Reads packet from circular buffer into a provided location |
- Returns
- FOTA_ERROR_SUCCESS if network buffer is initialized successfully FOTA_ERROR_INVALID_ARGS if one of the parameters are incorrect
◆ network_buffer_write()
Write data bytes.
- Parameters
-
network_buffer | Pointer to the network buffer |
data | Pointer to data byte to write |
- Returns
- FOTA_ERROR_SUCCESS if network buffer is initialized successfully FOTA_ERROR_INVALID_ARGS if one of the parameters are incorrect