File tree 32 files changed +40
-40
lines changed
32 files changed +40
-40
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(blink
2
2
blink.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (blink pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ add_executable(clocks_detached_clk_peri
2
2
detached_clk_peri.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (clocks_detached_clk_peri pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
9
9
pico_add_extra_outputs(clocks_detached_clk_peri)
10
10
11
11
# add url via pico_set_program_url
12
- example_auto_set_url(clocks_detached_clk_peri)
12
+ example_auto_set_url(clocks_detached_clk_peri)
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(hello_48MHz
2
2
hello_48MHz.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_48MHz pico_stdlib hardware_clocks)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ add_executable(hello_gpout
2
2
hello_gpout.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_gpout pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
9
9
pico_add_extra_outputs(hello_gpout)
10
10
11
11
# add url via pico_set_program_url
12
- example_auto_set_url(hello_gpout)
12
+ example_auto_set_url(hello_gpout)
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ add_executable(hello_resus
2
2
hello_resus.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_resus pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
9
9
pico_add_extra_outputs(hello_resus)
10
10
11
11
# add url via pico_set_program_url
12
- example_auto_set_url(hello_resus)
12
+ example_auto_set_url(hello_resus)
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ add_executable(hello_divider
2
2
hello_divider.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_divider pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
9
9
pico_add_extra_outputs(hello_divider)
10
10
11
11
# add url via pico_set_program_url
12
- example_auto_set_url(hello_divider)
12
+ example_auto_set_url(hello_divider)
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ add_executable(hello_7segment
2
2
hello_7segment.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_7segment pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
9
9
pico_add_extra_outputs(hello_7segment)
10
10
11
11
# add url via pico_set_program_url
12
- example_auto_set_url(hello_7segment)
12
+ example_auto_set_url(hello_7segment)
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(hello_gpio_irq
2
2
hello_gpio_irq.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_gpio_irq pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(hello_serial
2
2
hello_serial.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which aggregates commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_serial pico_stdlib)
7
7
8
8
# create map/bin/hex/uf2 file etc.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ if (TARGET tinyusb_device)
3
3
hello_usb.c
4
4
)
5
5
6
- # Pull in our pico_stdlib which aggregates commonly used features
6
+ # pull in common dependencies
7
7
target_link_libraries (hello_usb pico_stdlib)
8
8
9
9
# enable usb output, disable uart output
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(i2c_bus_scan
2
2
bus_scan.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional i2c hardware support
6
6
target_link_libraries (i2c_bus_scan pico_stdlib hardware_i2c)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(lcd_1602_i2c
2
2
lcd_1602_i2c.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional i2c hardware support
6
6
target_link_libraries (lcd_1602_i2c pico_stdlib hardware_i2c)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(mpu6050_i2c
2
2
mpu6050_i2c.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional i2c hardware support
6
6
target_link_libraries (mpu6050_i2c pico_stdlib hardware_i2c)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ if (TARGET hardware_interp)
3
3
hello_interp.c
4
4
)
5
5
6
- # Pull in dependencies
6
+ # pull in common dependencies and additional interpolation hardware support
7
7
target_link_libraries (hello_interp pico_stdlib hardware_interp)
8
8
9
9
# create map/bin/hex file etc.
10
10
pico_add_extra_outputs(hello_interp)
11
11
12
12
# add url via pico_set_program_url
13
13
example_auto_set_url(hello_interp)
14
- endif ()
14
+ endif ()
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(picoboard_blinky
2
2
blinky.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (picoboard_blinky pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(picoboard_button
2
2
button.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (picoboard_button pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(hello_pwm
2
2
hello_pwm.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies and additional pwm hardware support
6
6
target_link_libraries (hello_pwm pico_stdlib hardware_pwm)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(pwm_led_fade
2
2
pwm_led_fade.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies and additional pwm hardware support
6
6
target_link_libraries (pwm_led_fade pico_stdlib hardware_pwm)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(pwm_measure_duty_cycle
2
2
measure_duty_cycle.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies and additional pwm hardware support
6
6
target_link_libraries (pwm_measure_duty_cycle pico_stdlib hardware_pwm)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ if (TARGET hardware_reset)
3
3
hello_reset.c
4
4
)
5
5
6
- # Pull in our pico_stdlib which pulls in commonly used features
6
+ # pull in common dependencies
7
7
target_link_libraries (hello_reset pico_stdlib)
8
8
9
9
# create map/bin/hex file etc.
10
10
pico_add_extra_outputs(hello_reset)
11
11
12
12
# add url via pico_set_program_url
13
13
example_auto_set_url(hello_reset)
14
- endif ()
14
+ endif ()
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ if (TARGET hardware_resets)
3
3
hello_reset.c
4
4
)
5
5
6
- # Pull in our pico_stdlib which pulls in commonly used features
6
+ # pull in common dependencies and additional reset hardware support
7
7
target_link_libraries (hello_reset pico_stdlib hardware_resets)
8
8
9
9
# create map/bin/hex file etc.
10
10
pico_add_extra_outputs(hello_reset)
11
11
12
12
# add url via pico_set_program_url
13
13
example_auto_set_url(hello_reset)
14
- endif ()
14
+ endif ()
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(hello_rtc
2
2
hello_rtc.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional rtc hardware support
6
6
target_link_libraries (hello_rtc pico_stdlib hardware_rtc)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(rtc_alarm
2
2
rtc_alarm.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional rtc hardware support
6
6
target_link_libraries (rtc_alarm pico_stdlib hardware_rtc)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(rtc_alarm_repeat
2
2
rtc_alarm_repeat.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional rtc hardware support
6
6
target_link_libraries (rtc_alarm_repeat pico_stdlib hardware_rtc)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(bme280_spi
2
2
bme280_spi.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional spi hardware support
6
6
target_link_libraries (bme280_spi pico_stdlib hardware_spi)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(mpu9250_spi
2
2
mpu9250_spi.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies and additional spi hardware support
6
6
target_link_libraries (mpu9250_spi pico_stdlib hardware_spi)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(spi_flash
2
2
spi_flash.c
3
3
)
4
4
5
- # Pull in basic dependencies
5
+ # pull in common dependencies and additional spi hardware support
6
6
target_link_libraries (spi_flash pico_stdlib hardware_spi)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(narrow_io_write
2
2
narrow_io_write.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies
6
6
target_link_libraries (narrow_io_write pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(hello_timer
2
2
hello_timer.c
3
3
)
4
4
5
- # Pull in our get you started dependencies
5
+ # pull in common dependencies
6
6
target_link_libraries (hello_timer pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ if (NOT PICO_TIME_NO_ALARM_SUPPORT)
3
3
periodic_sampler.c
4
4
)
5
5
6
- # Pull in our get you started dependencies
6
+ # pull in common dependencies
7
7
target_link_libraries (periodic_sampler pico_stdlib)
8
8
9
9
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(hello_uart
2
2
hello_uart.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies and additional uart hardware support
6
6
target_link_libraries (hello_uart pico_stdlib)
7
7
8
8
# create map/bin/hex file etc.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ add_executable(uart_advanced
2
2
uart_advanced.c
3
3
)
4
4
5
- # Pull in our pico_stdlib which pulls in commonly used features
5
+ # pull in common dependencies and additional uart hardware support
6
6
target_link_libraries (uart_advanced pico_stdlib hardware_uart)
7
7
8
8
# create map/bin/hex file etc.
You can’t perform that action at this time.
0 commit comments