2021-01-15 18:19:39 +00:00
|
|
|
add_executable(
|
2022-05-12 16:02:56 +01:00
|
|
|
pico_display_demo
|
2021-01-15 18:19:39 +00:00
|
|
|
demo.cpp
|
|
|
|
image_data.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
# Pull in pico libraries that we need
|
2022-05-12 16:02:56 +01:00
|
|
|
target_link_libraries(pico_display_demo pico_stdlib hardware_spi hardware_pwm hardware_dma rgbled pico_display generic_st7789)
|
2021-01-15 18:19:39 +00:00
|
|
|
|
|
|
|
# create map/bin/hex file etc.
|
2022-05-12 16:02:56 +01:00
|
|
|
pico_add_extra_outputs(pico_display_demo)
|