renamed to raspi_keyer

This commit is contained in:
Martin Brodbeck 2024-02-13 08:24:32 +01:00
parent 10d56f8a8b
commit 31993ca952
3 changed files with 12 additions and 12 deletions

View file

@ -18,40 +18,40 @@ if (PICO_SDK_VERSION_STRING VERSION_LESS "1.5.0")
message(FATAL_ERROR "Raspberry Pi Pico SDK version 1.5.0 (or later) required. Your version is ${PICO_SDK_VERSION_STRING}") message(FATAL_ERROR "Raspberry Pi Pico SDK version 1.5.0 (or later) required. Your version is ${PICO_SDK_VERSION_STRING}")
endif() endif()
project(pico_keyer C CXX ASM) project(raspi_keyer C CXX ASM)
# Initialise the Raspberry Pi Pico SDK # Initialise the Raspberry Pi Pico SDK
pico_sdk_init() pico_sdk_init()
# Add executable. Default name is the project name, version 0.1 # Add executable. Default name is the project name, version 0.1
add_executable(pico_keyer) add_executable(raspi_keyer)
add_subdirectory(src) add_subdirectory(src)
pico_set_program_name(pico_keyer "pico_keyer") pico_set_program_name(raspi_keyer "raspi_keyer")
pico_set_program_version(pico_keyer "0.1") pico_set_program_version(raspi_keyer "0.1")
pico_enable_stdio_uart(pico_keyer 1) pico_enable_stdio_uart(raspi_keyer 1)
pico_enable_stdio_usb(pico_keyer 0) pico_enable_stdio_usb(raspi_keyer 0)
# Add the standard library to the build # Add the standard library to the build
target_link_libraries(pico_keyer target_link_libraries(raspi_keyer
pico_stdlib) pico_stdlib)
# Add the standard include files to the build # Add the standard include files to the build
target_include_directories(pico_keyer PRIVATE target_include_directories(raspi_keyer PRIVATE
${CMAKE_CURRENT_LIST_DIR} ${CMAKE_CURRENT_LIST_DIR}
${CMAKE_CURRENT_LIST_DIR}/.. # for our common lwipopts or any other standard includes, if required ${CMAKE_CURRENT_LIST_DIR}/.. # for our common lwipopts or any other standard includes, if required
) )
# Add any user requested libraries # Add any user requested libraries
target_link_libraries(pico_keyer target_link_libraries(raspi_keyer
hardware_flash hardware_flash
hardware_exception hardware_exception
hardware_pwm hardware_pwm
pico_flash pico_flash
) )
pico_add_extra_outputs(pico_keyer) pico_add_extra_outputs(raspi_keyer)

View file

@ -1,6 +1,6 @@
target_sources(pico_keyer PRIVATE target_sources(raspi_keyer PRIVATE
pico_keyer.cpp pico_keyer.cpp
settings.cpp settings.cpp
keyer.cpp keyer.cpp
sidetone.cpp sidetone.cpp
) )