LCD class
This commit is contained in:
parent
55c3b0f80a
commit
165e9912dd
1 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,7 @@ pico_sdk_init()
|
|||
|
||||
# Add executable. Default name is the project name, version 0.1
|
||||
|
||||
add_executable(gbmanager gbmanager.cpp )
|
||||
add_executable(gbmanager gbmanager.cpp lcd.cpp)
|
||||
|
||||
pico_set_program_name(gbmanager "gbmanager")
|
||||
pico_set_program_version(gbmanager "0.1")
|
||||
|
@ -31,9 +31,9 @@ pico_enable_stdio_usb(gbmanager 0)
|
|||
target_link_libraries(gbmanager pico_stdlib)
|
||||
|
||||
# Add any user requested libraries
|
||||
#target_link_libraries(gbmanager
|
||||
# hardware_i2c
|
||||
#)
|
||||
target_link_libraries(gbmanager
|
||||
hardware_i2c
|
||||
)
|
||||
|
||||
pico_add_extra_outputs(gbmanager)
|
||||
|
||||
|
|
Loading…
Reference in a new issue