Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates along with SDK1.3.0 release #181

Merged
merged 22 commits into from
Nov 1, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cf2cd5a
Enforce alphabetical order in subdir CMakeLists
Jul 2, 2021
34c3ade
Fix pio_blink frequency calculation
urish Jun 9, 2021
8f93bbc
Remove old line from CMakeLists
Jul 2, 2021
8f68cef
Clarify GPIO pins in MPU6050 example
Jul 2, 2021
1983217
Improve comments in CMakeLists.txt files
Jul 12, 2021
99facf4
Fix lingering incorrect comments
Jul 12, 2021
a192a01
Improve comment wording
Jul 15, 2021
010595e
Fixed typos in notes (#155)
diegosolano Sep 2, 2021
3f27420
Update website-links to raspberrypi.com (#161)
lurch Oct 14, 2021
1b1948a
bus_scan.c example - clarify pin number in comment (#146)
a-h Oct 21, 2021
ad51837
Fix typo in comment (#158)
emircangun Oct 22, 2021
74aff26
This should make using the WS2812 examples a bit easier. (#84)
josefwegner Oct 22, 2021
fabb762
fixup examples to use some SDK1.2.0 added functions (#172)
kilograham Oct 25, 2021
6e647c6
Additional examples for specific h/w by our interns (#171)
kilograham Oct 25, 2021
09e34e7
add a quadrature encoder pio example (#126)
pmarques-dev Oct 26, 2021
1ec5e53
Add pio/ir_nec (#129)
mjcross Oct 26, 2021
845daad
SDK1.3.0 specific (requiring) changes (#173)
kilograham Oct 26, 2021
1300621
Fix Raspberry Pi Pico product link (#177)
lurch Oct 28, 2021
fa09f2c
Cleanup 3rd party samples; update README.md; add some missing copyrig…
kilograham Oct 28, 2021
c507d54
regenerated pio headers (#180)
kilograham Oct 28, 2021
fd7fd1f
fix lcd_uart for PICO_BOARD=none (#179)
kilograham Oct 29, 2021
3f3c1f0
add CONTRIBUTING.md (#170)
kilograham Nov 1, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove old line from CMakeLists
  • Loading branch information
matiasilva authored and kilograham committed Jul 30, 2021
commit 8f93bbc1a1672bb25de644a3aa708d3f08b5e3c2
2 changes: 1 addition & 1 deletion i2c/bus_scan/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(i2c_bus_scan
bus_scan.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(i2c_bus_scan pico_stdlib hardware_i2c)

# create map/bin/hex file etc.
Expand Down
4 changes: 2 additions & 2 deletions i2c/lcd_1602_i2c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ add_executable(lcd_1602_i2c
lcd_1602_i2c.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(lcd_1602_i2c pico_stdlib hardware_i2c)

# create map/bin/hex file etc.
pico_add_extra_outputs(lcd_1602_i2c)

# add url via pico_set_program_url
example_auto_set_url(lcd_1602_i2c)
example_auto_set_url(lcd_1602_i2c)
2 changes: 1 addition & 1 deletion i2c/mpu6050_i2c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(mpu6050_i2c
mpu6050_i2c.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(mpu6050_i2c pico_stdlib hardware_i2c)

# create map/bin/hex file etc.
Expand Down
2 changes: 1 addition & 1 deletion rtc/hello_rtc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(hello_rtc
hello_rtc.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(hello_rtc pico_stdlib hardware_rtc)

# create map/bin/hex file etc.
Expand Down
2 changes: 1 addition & 1 deletion rtc/rtc_alarm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(rtc_alarm
rtc_alarm.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(rtc_alarm pico_stdlib hardware_rtc)

# create map/bin/hex file etc.
Expand Down
2 changes: 1 addition & 1 deletion rtc/rtc_alarm_repeat/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(rtc_alarm_repeat
rtc_alarm_repeat.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(rtc_alarm_repeat pico_stdlib hardware_rtc)

# create map/bin/hex file etc.
Expand Down
2 changes: 1 addition & 1 deletion spi/bme280_spi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(bme280_spi
bme280_spi.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(bme280_spi pico_stdlib hardware_spi)

# create map/bin/hex file etc.
Expand Down
2 changes: 1 addition & 1 deletion spi/mpu9250_spi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(mpu9250_spi
mpu9250_spi.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(mpu9250_spi pico_stdlib hardware_spi)

# create map/bin/hex file etc.
Expand Down
2 changes: 1 addition & 1 deletion timer/hello_timer/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ add_executable(hello_timer
hello_timer.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(hello_timer pico_stdlib)

# create map/bin/hex file etc.
Expand Down
2 changes: 1 addition & 1 deletion timer/periodic_sampler/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ if (NOT PICO_TIME_NO_ALARM_SUPPORT)
periodic_sampler.c
)

# Pull in our (to be renamed) simple get you started dependencies
# Pull in our get you started dependencies
target_link_libraries(periodic_sampler pico_stdlib)

# create map/bin/hex file etc.
Expand Down