-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update MQTT stream submodule pointer (#44)
* Update MQTT stream submodule pointer * Add MQTTFileDownloader_config.h file to every project which make use of MQTT stream. * Onboard manifest check
- Loading branch information
1 parent
2ae6e12
commit a35a007
Showing
7 changed files
with
135 additions
and
27 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
Submodule mqtt-stream
updated
21 files
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
27 changes: 27 additions & 0 deletions
27
examples/evkbmimxrt1060/defender/include/MQTTFileDownloader_config.h
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,27 @@ | ||
/* | ||
* AWS IoT Core MQTT File Streams Embedded C v1.1.0 | ||
* Copyright (C) 2023 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. | ||
*/ | ||
|
||
/** | ||
* @file MQTTFileDownloader_config.h | ||
* @brief Configs for MQTT stream. | ||
*/ | ||
|
||
#ifndef MQTT_FILE_DOWNLOADER_CONFIG_H | ||
#define MQTT_FILE_DOWNLOADER_CONFIG_H | ||
|
||
/** | ||
* Configure the Maximum size of the data payload. The smallest value is 256 bytes, | ||
* maximum is 128KB. | ||
*/ | ||
#ifndef mqttFileDownloader_CONFIG_BLOCK_SIZE | ||
#define mqttFileDownloader_CONFIG_BLOCK_SIZE 512U | ||
#endif | ||
|
||
#endif /* #ifndef MQTT_FILE_DOWNLOADER_DEFAULT_H */ |
27 changes: 27 additions & 0 deletions
27
examples/evkbmimxrt1060/pubsub/include/MQTTFileDownloader_config.h
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,27 @@ | ||
/* | ||
* AWS IoT Core MQTT File Streams Embedded C v1.1.0 | ||
* Copyright (C) 2023 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. | ||
*/ | ||
|
||
/** | ||
* @file MQTTFileDownloader_config.h | ||
* @brief Configs for MQTT stream. | ||
*/ | ||
|
||
#ifndef MQTT_FILE_DOWNLOADER_CONFIG_H | ||
#define MQTT_FILE_DOWNLOADER_CONFIG_H | ||
|
||
/** | ||
* Configure the Maximum size of the data payload. The smallest value is 256 bytes, | ||
* maximum is 128KB. | ||
*/ | ||
#ifndef mqttFileDownloader_CONFIG_BLOCK_SIZE | ||
#define mqttFileDownloader_CONFIG_BLOCK_SIZE 512U | ||
#endif | ||
|
||
#endif /* #ifndef MQTT_FILE_DOWNLOADER_DEFAULT_H */ |
27 changes: 27 additions & 0 deletions
27
examples/evkbmimxrt1060/shadow/include/MQTTFileDownloader_config.h
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,27 @@ | ||
/* | ||
* AWS IoT Core MQTT File Streams Embedded C v1.1.0 | ||
* Copyright (C) 2023 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. | ||
*/ | ||
|
||
/** | ||
* @file MQTTFileDownloader_config.h | ||
* @brief Configs for MQTT stream. | ||
*/ | ||
|
||
#ifndef MQTT_FILE_DOWNLOADER_CONFIG_H | ||
#define MQTT_FILE_DOWNLOADER_CONFIG_H | ||
|
||
/** | ||
* Configure the Maximum size of the data payload. The smallest value is 256 bytes, | ||
* maximum is 128KB. | ||
*/ | ||
#ifndef mqttFileDownloader_CONFIG_BLOCK_SIZE | ||
#define mqttFileDownloader_CONFIG_BLOCK_SIZE 512U | ||
#endif | ||
|
||
#endif /* #ifndef MQTT_FILE_DOWNLOADER_DEFAULT_H */ |
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