Skip to content

Commit

Permalink
Rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
richardbar committed Feb 1, 2024
1 parent 1bba482 commit a7e7688
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/external/pico-sdk.cmake)
# initialize the SDK based on PICO_SDK_PATH
include(pico_sdk_import.cmake)

project(template)
project(TestBench)

set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED true)
Expand All @@ -40,12 +40,12 @@ pico_sdk_init()

include("${CMAKE_CURRENT_LIST_DIR}/src/CMakeLists.txt")

add_executable(template ${${PROJECT_NAME}_SRC})
add_executable(${PROJECT_NAME} ${${PROJECT_NAME}_SRC})

include(${CMAKE_CURRENT_LIST_DIR}/external/FreeRTOS.cmake)
include(${CMAKE_CURRENT_LIST_DIR}/external/etl.cmake)

target_link_libraries(template
target_link_libraries(${PROJECT_NAME}
hardware_adc
hardware_base
hardware_claim
Expand Down Expand Up @@ -97,7 +97,7 @@ target_link_libraries(template
etl::etl
FreeRTOS)

pico_add_extra_outputs(template)
pico_add_extra_outputs(${PROJECT_NAME})

pico_enable_stdio_usb(template 0)
pico_enable_stdio_uart(template 1)
pico_enable_stdio_usb(${PROJECT_NAME} 0)
pico_enable_stdio_uart(${PROJECT_NAME} 1)
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Embedded Template
# Test Bench

## Building the Project
Before you can run the application, you'll need to build the project. Follow the steps below:
Expand All @@ -11,8 +11,8 @@ Make sure you have the following prerequisites installed on your machine:

### Clone the Repository
```bash
git clone https://github.com/SPIN-Space-Innovation/Embedded-Template.git
cd Embedded-Template
git clone https://github.com/SPIN-Space-Innovation/Test-Bench.git
cd Test-Bench
```

### Generate the project buildsystem
Expand All @@ -28,4 +28,4 @@ cmake --build build -j ${No of build jobs}
```

## License
Embedded Template is licensed under the [MIT license](LICENSE).
Test Bench is licensed under the [MIT license](LICENSE).

0 comments on commit a7e7688

Please sign in to comment.