From 74ce438238a3611e01c8dd660b93f33aff241e51 Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Wed, 16 Apr 2025 08:11:38 -0700 Subject: [PATCH] Fix remaining PICO_RP2350B reference Minor fix to #2898 --- cores/rp2040/Arduino.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/rp2040/Arduino.h b/cores/rp2040/Arduino.h index 15de00b17..515caf7f4 100644 --- a/cores/rp2040/Arduino.h +++ b/cores/rp2040/Arduino.h @@ -165,7 +165,7 @@ constexpr uint64_t __bitset(const int (&a)[N], size_t i = 0U) { #define PSRAM __attribute__((section("\".psram\""))) // General GPIO/ADC layout info -#ifdef PICO_RP2350B +#if defined(PICO_RP2350) && !PICO_RP2350A #define __GPIOCNT 48 #define __FIRSTANALOGGPIO 40 #else