Fix lingering incorrect comments

This commit is contained in:
matiasilva 2021-07-12 10:48:21 +01:00 committed by Graham Sanderson
parent 1983217af3
commit 99facf4deb
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ add_executable(hello_48MHz
hello_48MHz.c hello_48MHz.c
) )
# pull in common dependencies # pull in common dependencies and additional clocks hardware support
target_link_libraries(hello_48MHz pico_stdlib hardware_clocks) target_link_libraries(hello_48MHz pico_stdlib hardware_clocks)
# create map/bin/hex file etc. # create map/bin/hex file etc.

View File

@ -2,7 +2,7 @@ add_executable(hello_uart
hello_uart.c hello_uart.c
) )
# pull in common dependencies and additional uart hardware support # pull in common dependencies
target_link_libraries(hello_uart pico_stdlib) target_link_libraries(hello_uart pico_stdlib)
# create map/bin/hex file etc. # create map/bin/hex file etc.