Skip to content
Snippets Groups Projects
Commit f5dd7b55 authored by Valentini, Matteo's avatar Valentini, Matteo
Browse files

initial commit

parents
Branches
No related tags found
No related merge requests found
# Add the executable target
add_executable(A2 src/A2/main.c)
# Modify the below lines to enable/disable output over UART/USB
pico_enable_stdio_uart(A2 0)
pico_enable_stdio_usb(A2 1)
# Add the standard library to the build
target_link_libraries(A2 pico_stdlib hardware_i2c hardware_pwm)
# Add local includes
target_include_directories(A2 PRIVATE ${CMAKE_CURRENT_LIST_DIR})
# Generate the uf2 file
pico_add_extra_outputs(A2)
\ No newline at end of file
// You can modify this file for local testing, but it will be overridden by the testsystem
int main()
{
while (1);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment