File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ jobs:
43
43
with :
44
44
name : firmware
45
45
path : |
46
- build/dppl .bin
47
- build/dppl .elf
48
- build/dppl .elf.map
49
- build/dppl .uf2
46
+ build/mr.duppl .bin
47
+ build/mr.duppl .elf
48
+ build/mr.duppl .elf.map
49
+ build/mr.duppl .uf2
50
50
if-no-files-found : error
51
51
52
52
release :
62
62
uses : svenstaro/upload-release-action@v2
63
63
with :
64
64
file_glob : true
65
- file : dppl *
65
+ file : mr.duppl *
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ cmake_minimum_required(VERSION 3.13)
58
58
59
59
include (pico_sdk_import.cmake)
60
60
61
- project (dppl )
61
+ project (mr.duppl )
62
62
63
63
set (CMAKE_C_STANDARD 11)
64
64
set (CMAKE_CXX_STANDARD 23)
@@ -74,14 +74,14 @@ add_compile_definitions(
74
74
75
75
pico_sdk_init()
76
76
77
- add_executable (dppl
77
+ add_executable (mr.duppl
78
78
main.cc
79
79
slip.cc
80
80
usb.cc
81
81
)
82
82
83
- pico_generate_pio_header(dppl ${CMAKE_CURRENT_LIST_DIR} /usb_sniff.pio)
83
+ pico_generate_pio_header(mr.duppl ${CMAKE_CURRENT_LIST_DIR} /usb_sniff.pio)
84
84
85
- target_link_libraries (dppl pico_stdlib pico_multicore pico_stdio_usb hardware_pio hardware_dma hardware_irq)
85
+ target_link_libraries (mr.duppl pico_stdlib pico_multicore pico_stdio_usb hardware_pio hardware_dma hardware_irq)
86
86
87
- pico_add_extra_outputs(dppl )
87
+ pico_add_extra_outputs(mr.duppl )
You can’t perform that action at this time.
0 commit comments