Skip to content

Commit 5d9f227

Browse files
authored
fix typos in pico-w examples (#236)
* fix typo in iperf example * fix type in ping example
1 parent 566ce86 commit 5d9f227

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pico_w/freertos/iperf/picow_freertos_iperf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int main( void )
120120
#if ( portSUPPORT_SMP == 1 ) && ( configNUM_CORES == 2 )
121121
printf("Starting %s on both cores:\n", rtos_name);
122122
vLaunch();
123-
#elif ( RUN_FREE_RTOS_ON_CORE == 1 )
123+
#elif ( RUN_FREERTOS_ON_CORE == 1 )
124124
printf("Starting %s on core 1:\n", rtos_name);
125125
multicore_launch_core1(vLaunch);
126126
while (true);

pico_w/freertos/ping/picow_freertos_ping.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ int main( void )
7878
#if ( portSUPPORT_SMP == 1 ) && ( configNUM_CORES == 2 )
7979
printf("Starting %s on both cores:\n", rtos_name);
8080
vLaunch();
81-
#elif ( RUN_FREE_RTOS_ON_CORE == 1 )
81+
#elif ( RUN_FREERTOS_ON_CORE == 1 )
8282
printf("Starting %s on core 1:\n", rtos_name);
8383
multicore_launch_core1(vLaunch);
8484
while (true);

0 commit comments

Comments
 (0)