Skip to content

Commit 72aa902

Browse files
committed
working on rp2350 support
1 parent 4395c22 commit 72aa902

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/current_sense/hardware_specific/rp2040/rp2040_mcu.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
#if defined(TARGET_RP2040)
2+
#if defined(TARGET_RP2040) || defined(TARGET_RP2350)
33

44

55
#include "../../hardware_api.h"

src/drivers/hardware_specific/rp2040/rp2040_mcu.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#include "./rp2040_mcu.h"
77

88

9-
#if defined(TARGET_RP2040)
9+
#if defined(TARGET_RP2040) || defined(TARGET_RP2350)
1010

1111

1212
#pragma message("")
13-
#pragma message("SimpleFOC: compiling for RP2040")
13+
#pragma message("SimpleFOC: compiling for RP2040/RP2350")
1414
#pragma message("")
1515

1616
#if !defined(SIMPLEFOC_DEBUG_RP2040)

src/drivers/hardware_specific/rp2040/rp2040_mcu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include "Arduino.h"
66

7-
#if defined(TARGET_RP2040)
7+
#if defined(TARGET_RP2040) || defined(TARGET_RP2350)
88

99

1010

0 commit comments

Comments
 (0)