Skip to content

Commit

Permalink
Fix format 2
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot committed Aug 23, 2024
1 parent 4821c59 commit f8accd2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main/qualification_app_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ static BaseType_t prvInitializeNetworkContext( char * pcServerName,
}

#if CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL

/* If the digital signature peripheral is being used, get the digital
* signature peripheral context from esp_secure_crt_mgr and put into
* network context. */
Expand All @@ -233,6 +234,7 @@ static BaseType_t prvInitializeNetworkContext( char * pcServerName,
xRet = pdFAIL;
}
#else /* if CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL */

/* If the DS peripheral is not being used, get the device private key from
* esp_secure_crt_mgr and put into network context. */

Expand Down Expand Up @@ -305,6 +307,7 @@ static BaseType_t prvInitializeNetworkContext( char * pcServerName,
}

#if CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL

/* If the digital signature peripheral is being used, get the digital
* signature peripheral context from esp_secure_crt_mgr and put into
* second network context. */
Expand All @@ -317,6 +320,7 @@ static BaseType_t prvInitializeNetworkContext( char * pcServerName,
xRet = pdFAIL;
}
#else /* if CONFIG_ESP_SECURE_CERT_DS_PERIPHERAL */

/* If the DS peripheral is not being used, get the device private key from
* esp_secure_crt_mgr and put into second network context. */

Expand Down

0 comments on commit f8accd2

Please sign in to comment.