8000 Update pico-sdk to 1.2.0, using raspberrypi repo · domdfcoding/circuitpython@0293ec2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0293ec2

Browse files
committed
Update pico-sdk to 1.2.0, using raspberrypi repo
1 parent ce73015 commit 0293ec2

File tree

5 files changed

+21
-17
lines changed

5 files changed

+21
-17
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
url = https://github.com/adafruit/Adafruit_CircuitPython_SimpleMath
178178
[submodule "ports/raspberrypi/sdk"]
179179
path = ports/raspberrypi/sdk
180-
url = https://github.com/adafruit/pico-sdk.git
180+
url = https://github.com/raspberrypi/pico-sdk.git
181181
[submodule "data/nvm.toml"]
182182
path = data/nvm.toml
183183
url = https://github.com/adafruit/nvm.toml.git

ports/raspberrypi/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ INC += -I. \
7676
-isystem sdk/src/rp2_common/hardware_base/include/ \
7777
-isystem sdk/src/rp2_common/hardware_claim/include/ \
7878
-isystem sdk/src/rp2_common/hardware_clocks/include/ \
79+
-isystem sdk/src/rp2_common/hardware_divider/include/ \
7980
-isystem sdk/src/rp2_common/hardware_dma/include/ \
8081
-isystem sdk/src/rp2_common/hardware_flash/include/ \
8182
-isystem sdk/src/rp2_common/hardware_gpio/include/ \

ports/raspberrypi/sdk

Submodule sdk updated 191 files
Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
#pragma once
22

3-
#define PICO_IE_26_29_UNCHANGED_ON_RESET (0)
4-
#define PICO_USE_STACK_GUARDS (0)
3+
// alphabetized
4+
#define LIB_PICO_BINARY_INFO (0)
5+
#define LIB_PICO_PRINTF_NONE (0)
6+
#define LIB_PICO_PRINTF_PICO (0)
7+
#define LIB_PICO_STDIO_SEMIHOSTING (0)
8+
#define LIB_PICO_STDIO_UART (0)
9+
#define LIB_PICO_STDIO_USB (0)
10+
#define PICO_DIVIDER_DISABLE_INTERRUPTS (0)
11+
#define PICO_DOUBLE_SUPPORT_ROM_V1 (1)
512
#define PICO_ENTER_USB_BOOT_ON_EXIT (0)
6-
#define PICO_USE_OPTIMISTIC_SBRK (0)
13+
#define PICO_FLOAT_SUPPORT_ROM_V1 (1)
14+
#define PICO_IE_26_29_UNCHANGED_ON_RESET (0)
15+
#define PICO_INT64_OPS_IN_RAM (0)
716
#define PICO_NO_HARDWARE (0)
817
#define PICO_ON_DEVICE (1)
9-
#define PICO_USE_CRT_PRINTF (0)
10-
#define PICO_NO_PRINTF (0)
11-
#define PICO_FLOAT_SUPPORT_ROM_V1 (1)
12-
#define PICO_DOUBLE_SUPPORT_ROM_V1 (1)
13-
#define PICO_STDIO_UART (0)
14-
#define PICO_STDIO_USB (0)
15-
#define PICO_STDIO_SEMIHOSTING (0)
16-
#define PICO_STDIO_IGNORE_NESTED_STDOUT (0)
17-
#define PICO_PRINTF_PICO (0)
18-
#define PICO_PRINTF_NONE (0)
1918
#define PICO_PRINTF_ALWAYS_INCLUDED (1)
19+
#define PICO_STDIO_IGNORE_NESTED_STDOUT (0)
20+
#define PICO_USE_CRT_PRINTF (0)
21+
#define PICO_USE_OPTIMISTIC_SBRK (0)
22+
#define PICO_USE_STACK_GUARDS (0)

ports/raspberrypi/sdk_config/pico/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
#define _PICO_VERSION_H
1313

1414
#define PICO_SDK_VERSION_MAJOR 1
15-
#define PICO_SDK_VERSION_MINOR 0
15+
#define PICO_SDK_VERSION_MINOR 2
1616
#define PICO_SDK_VERSION_REVISION 0
17-
#define PICO_SDK_VERSION_STRING "1.0.0"
17+
#define PICO_SDK_VERSION_STRING "1.2.0"
1818

1919
#endif

0 commit comments

Comments
 (0)
0