first and working ethernet
This commit is contained in:
41
Refernce Code/RP2040-ETH-WS2812B/C/CMakeLists.txt
Normal file
41
Refernce Code/RP2040-ETH-WS2812B/C/CMakeLists.txt
Normal file
@@ -0,0 +1,41 @@
|
||||
# Generated Cmake Pico project file
|
||||
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
# initalize pico_sdk from installed location
|
||||
# (note this can come from environment, CMake cache etc)
|
||||
#set(PICO_SDK_PATH "D:/Raspberry/Pico-Code/pico-sdk")
|
||||
|
||||
# Pull in Raspberry Pi Pico SDK (must be before project)
|
||||
include(pico_sdk_import.cmake)
|
||||
|
||||
project(RP2040_WS2812B_Test C CXX ASM)
|
||||
|
||||
# Initialise the Raspberry Pi Pico SDK
|
||||
pico_sdk_init()
|
||||
|
||||
# Add executable. Default name is the project name, version 0.1
|
||||
|
||||
add_executable(RP2040_WS2812B_Test RP2040_WS2812B_Test.c )
|
||||
|
||||
pico_generate_pio_header(RP2040_WS2812B_Test ${CMAKE_CURRENT_LIST_DIR}/ws2812.pio OUTPUT_DIR ${CMAKE_CURRENT_LIST_DIR}/generated)
|
||||
|
||||
pico_set_program_name(RP2040_WS2812B_Test "RP2040_WS2812B_Test")
|
||||
pico_set_program_version(RP2040_WS2812B_Test "0.1")
|
||||
|
||||
pico_enable_stdio_uart(RP2040_WS2812B_Test 0)
|
||||
pico_enable_stdio_usb(RP2040_WS2812B_Test 0)
|
||||
|
||||
# Add the standard library to the build
|
||||
target_link_libraries(RP2040_WS2812B_Test pico_stdlib)
|
||||
|
||||
# Add any user requested libraries
|
||||
target_link_libraries(RP2040_WS2812B_Test
|
||||
hardware_pio
|
||||
)
|
||||
|
||||
pico_add_extra_outputs(RP2040_WS2812B_Test)
|
||||
|
||||
Reference in New Issue
Block a user