Skip to content

Commit be24b76

Browse files
committed
Formatting.
1 parent 1af93ba commit be24b76

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

main/demo_tasks/ota_over_mqtt_demo/ota_over_mqtt_demo_config.h

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -43,66 +43,66 @@
4343
/**
4444
* @brief The thing name of the device.
4545
*/
46-
#define otademoconfigCLIENT_IDENTIFIER ( CONFIG_GRI_THING_NAME )
46+
#define otademoconfigCLIENT_IDENTIFIER ( CONFIG_GRI_THING_NAME )
4747

4848
/**
4949
* @brief The maximum size of the file paths used in the demo.
5050
*/
51-
#define otademoconfigMAX_FILE_PATH_SIZE ( CONFIG_GRI_OTA_DEMO_MAX_FILE_PATH_SIZE )
51+
#define otademoconfigMAX_FILE_PATH_SIZE ( CONFIG_GRI_OTA_DEMO_MAX_FILE_PATH_SIZE )
5252

5353
/**
5454
* @brief The maximum size of the stream name required for downloading update file
5555
* from streaming service.
5656
*/
57-
#define otademoconfigMAX_STREAM_NAME_SIZE ( CONFIG_GRI_OTA_DEMO_MAX_STREAM_NAME_SIZE )
57+
#define otademoconfigMAX_STREAM_NAME_SIZE ( CONFIG_GRI_OTA_DEMO_MAX_STREAM_NAME_SIZE )
5858

5959
/**
6060
* @brief The delay used in the OTA demo task to periodically output the OTA
6161
* statistics like number of packets received, dropped, processed and queued per connection.
6262
*/
63-
#define otademoconfigTASK_DELAY_MS ( CONFIG_GRI_OTA_DEMO_TASK_DELAY_MS )
63+
#define otademoconfigTASK_DELAY_MS ( CONFIG_GRI_OTA_DEMO_TASK_DELAY_MS )
6464

6565
/**
6666
* @brief The maximum time for which OTA demo waits for an MQTT operation to be complete.
6767
* This involves receiving an acknowledgment for broker for SUBSCRIBE, UNSUBSCRIBE and non
6868
* QOS0 publishes.
6969
*/
70-
#define otademoconfigMQTT_TIMEOUT_MS ( CONFIG_GRI_OTA_DEMO_MQTT_TIMEOUT_MS )
70+
#define otademoconfigMQTT_TIMEOUT_MS ( CONFIG_GRI_OTA_DEMO_MQTT_TIMEOUT_MS )
7171

7272
/**
7373
* @brief The task priority of OTA agent task.
7474
*/
75-
#define otademoconfigAGENT_TASK_PRIORITY ( CONFIG_GRI_OTA_DEMO_AGENT_TASK_PRIORITY )
75+
#define otademoconfigAGENT_TASK_PRIORITY ( CONFIG_GRI_OTA_DEMO_AGENT_TASK_PRIORITY )
7676

7777
/**
7878
* @brief The stack size of OTA agent task.
7979
*/
80-
#define otademoconfigAGENT_TASK_STACK_SIZE ( CONFIG_GRI_OTA_DEMO_AGENT_TASK_STACK_SIZE )
80+
#define otademoconfigAGENT_TASK_STACK_SIZE ( CONFIG_GRI_OTA_DEMO_AGENT_TASK_STACK_SIZE )
8181

8282
/**
8383
* @brief The task priority of the OTA demo task.
8484
*/
85-
#define otademoconfigDEMO_TASK_PRIORITY ( CONFIG_GRI_OTA_DEMO_DEMO_TASK_PRIORITY )
85+
#define otademoconfigDEMO_TASK_PRIORITY ( CONFIG_GRI_OTA_DEMO_DEMO_TASK_PRIORITY )
8686

8787
/**
8888
* @brief The task stack size of the OTA demo task.
8989
*/
90-
#define otademoconfigDEMO_TASK_STACK_SIZE ( CONFIG_GRI_OTA_DEMO_DEMO_TASK_STACK_SIZE )
90+
#define otademoconfigDEMO_TASK_STACK_SIZE ( CONFIG_GRI_OTA_DEMO_DEMO_TASK_STACK_SIZE )
9191

9292
/**
9393
* @brief The number of OTA data buffer.
9494
*/
95-
#define otademoconfigMAX_NUM_OTA_DATA_BUFFERS ( CONFIG_GRI_OTA_MAX_NUM_DATA_BUFFERS )
95+
#define otademoconfigMAX_NUM_OTA_DATA_BUFFERS ( CONFIG_GRI_OTA_MAX_NUM_DATA_BUFFERS )
9696

9797
/**
9898
* @brief The version for the firmware which is running. OTA agent uses this
9999
* version number to perform anti-rollback validation. The firmware version for the
100100
* download image should be higher than the current version, otherwise the new image is
101101
* rejected in self test phase.
102102
*/
103-
#define APP_VERSION_MAJOR ( CONFIG_GRI_OTA_DEMO_APP_VERSION_MAJOR )
104-
#define APP_VERSION_MINOR ( CONFIG_GRI_OTA_DEMO_APP_VERSION_MINOR )
105-
#define APP_VERSION_BUILD ( CONFIG_GRI_OTA_DEMO_APP_VERSION_BUILD )
103+
#define APP_VERSION_MAJOR ( CONFIG_GRI_OTA_DEMO_APP_VERSION_MAJOR )
104+
#define APP_VERSION_MINOR ( CONFIG_GRI_OTA_DEMO_APP_VERSION_MINOR )
105+
#define APP_VERSION_BUILD ( CONFIG_GRI_OTA_DEMO_APP_VERSION_BUILD )
106106

107107
/* *INDENT-OFF* */
108108
#ifdef __cplusplus

0 commit comments

Comments
 (0)