File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
ssl-socket-clientauth/src Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ int main(int argc, char *argv[])
145
145
printf ("System Ready\n" );
146
146
147
147
/* Create ADC task */
148
- os_create_task (adc_task , NULL , FALSE);
148
+ os_task_create (adc_task , NULL , FALSE);
149
149
150
150
printf ("System Initialization finished\n" );
151
151
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ int main(int argc, char *argv[])
147
147
printf ("System Ready\n" );
148
148
149
149
/* Create Application tasks */
150
- os_create_task (gpio_blink_task , NULL , FALSE);
150
+ os_task_create (gpio_blink_task , NULL , FALSE);
151
151
152
152
printf ("System Initialization finished\n" );
153
153
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ int main(int argc, char *argv[])
200
200
printf ("System Ready\n" );
201
201
202
202
/* Create Application tasks */
203
- os_create_task (socket_task , NULL , FALSE);
203
+ os_task_create (socket_task , NULL , FALSE);
204
204
205
205
printf ("System Initialization finished\n" );
206
206
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ int main(void)
280
280
printf ("System Initialized\n" );
281
281
282
282
/* Create Application tasks */
283
- os_create_task (socket_task , NULL , FALSE);
283
+ os_task_create (socket_task , NULL , FALSE);
284
284
285
285
while (1 ) {
286
286
/* Main task loop */
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ int main(int argc, char *argv[])
205
205
printf ("System Ready\n" );
206
206
207
207
/* Create Application tasks */
208
- os_create_task (socket_task , NULL , FALSE);
208
+ os_task_create (socket_task , NULL , FALSE);
209
209
210
210
printf ("System Initialization finished\n" );
211
211
You can’t perform that action at this time.
0 commit comments