Skip to content

Commit

Permalink
Thought it would be cool to convert to cpp, seems to have done no harm?
Browse files Browse the repository at this point in the history
  • Loading branch information
KenwoodFox committed Jun 4, 2024
1 parent 7269f76 commit 4b6f345
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Firmware/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
add_executable(${ProjectName}
main.c
main.cpp
)

target_include_directories(${ProjectName} PRIVATE
Expand Down
2 changes: 1 addition & 1 deletion Firmware/src/main.c → Firmware/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <stdio.h>
#include "pico/stdlib.h"

void led_task()
void led_task(void *pvParams)
{
const uint LED_PIN = 13;
gpio_init(LED_PIN);
Expand Down

0 comments on commit 4b6f345

Please sign in to comment.