-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change adds support for multiple block requests and receives. A sequence of up to NUM_OF_BLOCKS_REQUESTED will be requested which are sequential in block number if still needed. Upon receiving the OTA agent will determine if the block is needed.
- Loading branch information
1 parent
c2fac60
commit 24c5856
Showing
5 changed files
with
399 additions
and
283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. and its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: MIT | ||
* | ||
* Licensed under the MIT License. See the LICENSE accompanying this file | ||
* for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
#ifndef MQTT_FILE_DOWNLOADER_CONFIG_H | ||
#define MQTT_FILE_DOWNLOADER_CONFIG_H | ||
|
||
#include <stdint.h> | ||
|
||
#define mqttFileDownloader_CONFIG_BLOCK_SIZE 256U | ||
|
||
#endif /* #ifndef MQTT_FILE_DOWNLOADER_CONFIG_H */ |
Oops, something went wrong.