2021-09-09T12:07:07

This commit is contained in:
2021-09-09 12:07:08 +09:00
parent af48e325c6
commit 25752057b1
12 changed files with 221 additions and 6 deletions

View File

@@ -3,7 +3,8 @@
{
"name": "Linux GCC ARM",
"includePath": [
"${workspaceFolder}/**"
"${workspaceFolder}/**",
"${workspaceFolder}/../../../pico-sdk/src/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",

View File

@@ -11,8 +11,8 @@ add_executable(hello
src/hello.c
)
pico_set_program_name(ProjectName "Hello Serial")
pico_set_program_version(ProjectName "0.1.0")
pico_set_program_name(hello "Hello Serial")
pico_set_program_version(hello "0.1.0")
pico_enable_stdio_usb(hello 1) # 표준 출력을 USB로
pico_enable_stdio_uart(hello 0) # 표준 출력을 UART로, 안함.