fix typos in pico-w examples (#236)
* fix typo in iperf example * fix type in ping example
This commit is contained in:
@@ -120,7 +120,7 @@ int main( void )
|
|||||||
#if ( portSUPPORT_SMP == 1 ) && ( configNUM_CORES == 2 )
|
#if ( portSUPPORT_SMP == 1 ) && ( configNUM_CORES == 2 )
|
||||||
printf("Starting %s on both cores:\n", rtos_name);
|
printf("Starting %s on both cores:\n", rtos_name);
|
||||||
vLaunch();
|
vLaunch();
|
||||||
#elif ( RUN_FREE_RTOS_ON_CORE == 1 )
|
#elif ( RUN_FREERTOS_ON_CORE == 1 )
|
||||||
printf("Starting %s on core 1:\n", rtos_name);
|
printf("Starting %s on core 1:\n", rtos_name);
|
||||||
multicore_launch_core1(vLaunch);
|
multicore_launch_core1(vLaunch);
|
||||||
while (true);
|
while (true);
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ int main( void )
|
|||||||
#if ( portSUPPORT_SMP == 1 ) && ( configNUM_CORES == 2 )
|
#if ( portSUPPORT_SMP == 1 ) && ( configNUM_CORES == 2 )
|
||||||
printf("Starting %s on both cores:\n", rtos_name);
|
printf("Starting %s on both cores:\n", rtos_name);
|
||||||
vLaunch();
|
vLaunch();
|
||||||
#elif ( RUN_FREE_RTOS_ON_CORE == 1 )
|
#elif ( RUN_FREERTOS_ON_CORE == 1 )
|
||||||
printf("Starting %s on core 1:\n", rtos_name);
|
printf("Starting %s on core 1:\n", rtos_name);
|
||||||
multicore_launch_core1(vLaunch);
|
multicore_launch_core1(vLaunch);
|
||||||
while (true);
|
while (true);
|
||||||
|
|||||||
Reference in New Issue
Block a user