Skip to content

Commit

Permalink
rename firmware (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
buglloc authored Nov 21, 2024
1 parent c254d86 commit 514ade5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
with:
name: firmware
path: |
build/dppl.bin
build/dppl.elf
build/dppl.elf.map
build/dppl.uf2
build/mr.duppl.bin
build/mr.duppl.elf
build/mr.duppl.elf.map
build/mr.duppl.uf2
if-no-files-found: error

release:
Expand All @@ -62,4 +62,4 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
file_glob: true
file: dppl*
file: mr.duppl*
10 changes: 5 additions & 5 deletions firmware/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ cmake_minimum_required(VERSION 3.13)

include(pico_sdk_import.cmake)

project(dppl)
project(mr.duppl)

set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 23)
Expand All @@ -74,14 +74,14 @@ add_compile_definitions(

pico_sdk_init()

add_executable(dppl
add_executable(mr.duppl
main.cc
slip.cc
usb.cc
)

pico_generate_pio_header(dppl ${CMAKE_CURRENT_LIST_DIR}/usb_sniff.pio)
pico_generate_pio_header(mr.duppl ${CMAKE_CURRENT_LIST_DIR}/usb_sniff.pio)

target_link_libraries(dppl pico_stdlib pico_multicore pico_stdio_usb hardware_pio hardware_dma hardware_irq)
target_link_libraries(mr.duppl pico_stdlib pico_multicore pico_stdio_usb hardware_pio hardware_dma hardware_irq)

pico_add_extra_outputs(dppl)
pico_add_extra_outputs(mr.duppl)

0 comments on commit 514ade5

Please sign in to comment.