fix typos in pico-w examples (#236)

* fix typo in iperf example

* fix type in ping example
This commit is contained in:
Brian Cooke
2023-02-02 20:23:54 +01:00
committed by GitHub
parent 566ce86a6e
commit 5d9f227d71
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -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);