Skip to content

Commit

Permalink
working on rp2350 support
Browse files Browse the repository at this point in the history
  • Loading branch information
runger1101001 committed Oct 3, 2024
1 parent 4395c22 commit 72aa902
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/current_sense/hardware_specific/rp2040/rp2040_mcu.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#if defined(TARGET_RP2040)
#if defined(TARGET_RP2040) || defined(TARGET_RP2350)


#include "../../hardware_api.h"
Expand Down
4 changes: 2 additions & 2 deletions src/drivers/hardware_specific/rp2040/rp2040_mcu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#include "./rp2040_mcu.h"


#if defined(TARGET_RP2040)
#if defined(TARGET_RP2040) || defined(TARGET_RP2350)


#pragma message("")
#pragma message("SimpleFOC: compiling for RP2040")
#pragma message("SimpleFOC: compiling for RP2040/RP2350")
#pragma message("")

#if !defined(SIMPLEFOC_DEBUG_RP2040)
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/hardware_specific/rp2040/rp2040_mcu.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#include "Arduino.h"

#if defined(TARGET_RP2040)
#if defined(TARGET_RP2040) || defined(TARGET_RP2350)



Expand Down

0 comments on commit 72aa902

Please sign in to comment.