Skip to content

Commit

Permalink
Fix startup log of example applications
Browse files Browse the repository at this point in the history
  • Loading branch information
Giung951 committed Apr 20, 2022
1 parent 0ea7ef2 commit 156649c
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/SSL_Client_Demo/app_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static const osThreadAttr_t app_main_attr = {
static void app_main (void *argument) {
int32_t status;

printf("AWS IoT Demo\r\n");
printf("SSL Client Demo\r\n");

status = socket_startup();
if (status == 0) {
Expand Down
1 change: 0 additions & 1 deletion examples/SSL_Client_Demo/ssl_client_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ int main (void)
SystemCoreClockUpdate();
stdio_init_all();

printf("Hello World\r\n");
osKernelInitialize(); // Initialize CMSIS-RTOS
app_initialize(); // Initialize application
osKernelStart(); // Start thread execution
Expand Down
1 change: 0 additions & 1 deletion examples/TCP_Client_Demo/tcp_client_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ int main (void)
SystemCoreClockUpdate();
stdio_init_all();

printf("Hello World\r\n");
osKernelInitialize(); // Initialize CMSIS-RTOS
app_initialize(); // Initialize application
osKernelStart(); // Start thread execution
Expand Down
2 changes: 1 addition & 1 deletion examples/TCP_Server_Demo/app_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ static const osThreadAttr_t app_main_attr = {
static void app_main (void *argument) {
int32_t status;

printf("AWS IoT Demo\r\n");
printf("TCP Server Demo\r\n");

status = socket_startup();
if (status == 0) {
Expand Down
1 change: 0 additions & 1 deletion examples/TCP_Server_Demo/tcp_server_demo.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ int main (void)
SystemCoreClockUpdate();
stdio_init_all();

printf("Hello World\r\n");
osKernelInitialize(); // Initialize CMSIS-RTOS
app_initialize(); // Initialize application
osKernelStart(); // Start thread execution
Expand Down

0 comments on commit 156649c

Please sign in to comment.