Skip to content

Commit 27d9d5e

Browse files
committed
Merge branch 'main' into zephyr_feather_rp2040_def
2 parents 8a115a2 + 13a9505 commit 27d9d5e

File tree

62 files changed

+1273
-114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1273
-114
lines changed

locale/circuitpython.pot

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2411,6 +2411,7 @@ msgstr ""
24112411
msgid "Update failed"
24122412
msgstr ""
24132413

2414+
#: ports/zephyr-cp/common-hal/audiobusio/I2SOut.c
24142415
#: ports/zephyr-cp/common-hal/busio/I2C.c
24152416
#: ports/zephyr-cp/common-hal/busio/SPI.c
24162417
#: ports/zephyr-cp/common-hal/busio/UART.c

locale/cs.po

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2435,6 +2435,7 @@ msgstr ""
24352435
msgid "Update failed"
24362436
msgstr ""
24372437

2438+
#: ports/zephyr-cp/common-hal/audiobusio/I2SOut.c
24382439
#: ports/zephyr-cp/common-hal/busio/I2C.c
24392440
#: ports/zephyr-cp/common-hal/busio/SPI.c
24402441
#: ports/zephyr-cp/common-hal/busio/UART.c

locale/el.po

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2439,6 +2439,7 @@ msgstr ""
24392439
msgid "Update failed"
24402440
msgstr ""
24412441

2442+
#: ports/zephyr-cp/common-hal/audiobusio/I2SOut.c
24422443
#: ports/zephyr-cp/common-hal/busio/I2C.c
24432444
#: ports/zephyr-cp/common-hal/busio/SPI.c
24442445
#: ports/zephyr-cp/common-hal/busio/UART.c

locale/hi.po

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2413,6 +2413,7 @@ msgstr ""
24132413
msgid "Update failed"
24142414
msgstr ""
24152415

2416+
#: ports/zephyr-cp/common-hal/audiobusio/I2SOut.c
24162417
#: ports/zephyr-cp/common-hal/busio/I2C.c
24172418
#: ports/zephyr-cp/common-hal/busio/SPI.c
24182419
#: ports/zephyr-cp/common-hal/busio/UART.c

locale/ko.po

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2487,6 +2487,7 @@ msgstr ""
24872487
msgid "Update failed"
24882488
msgstr ""
24892489

2490+
#: ports/zephyr-cp/common-hal/audiobusio/I2SOut.c
24902491
#: ports/zephyr-cp/common-hal/busio/I2C.c
24912492
#: ports/zephyr-cp/common-hal/busio/SPI.c
24922493
#: ports/zephyr-cp/common-hal/busio/UART.c

locale/ru.po

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2472,6 +2472,7 @@ msgstr "Неподдерживаемый тип сокета"
24722472
msgid "Update failed"
24732473
msgstr "Обновление не удалось"
24742474

2475+
#: ports/zephyr-cp/common-hal/audiobusio/I2SOut.c
24752476
#: ports/zephyr-cp/common-hal/busio/I2C.c
24762477
#: ports/zephyr-cp/common-hal/busio/SPI.c
24772478
#: ports/zephyr-cp/common-hal/busio/UART.c

locale/tr.po

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2435,6 +2435,7 @@ msgstr ""
24352435
msgid "Update failed"
24362436
msgstr ""
24372437

2438+
#: ports/zephyr-cp/common-hal/audiobusio/I2SOut.c
24382439
#: ports/zephyr-cp/common-hal/busio/I2C.c
24392440
#: ports/zephyr-cp/common-hal/busio/SPI.c
24402441
#: ports/zephyr-cp/common-hal/busio/UART.c
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
//
3+
// SPDX-FileCopyrightText: Copyright (c) 2021 Scott Shawcroft for Adafruit Industries
4+
//
5+
// SPDX-License-Identifier: MIT
6+
7+
#include "supervisor/board.h"
8+
9+
// Use the MP_WEAK supervisor/shared/board.c versions of routines not defined here.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// This file is part of the CircuitPython project: https://circuitpython.org
2+
//
3+
// SPDX-FileCopyrightText: Copyright (c) 2024 Scott Shawcroft for Adafruit Industries
4+
//
5+
// SPDX-License-Identifier: MIT
6+
7+
#define MICROPY_HW_BOARD_NAME "WeAct Studio RP2350B Core"
8+
#define MICROPY_HW_MCU_NAME "rp2350b"
9+
10+
#define CIRCUITPY_PSRAM_CHIP_SELECT (&pin_GPIO0)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
USB_VID = 0x1209
2+
USB_PID = 0xDEC1
3+
USB_PRODUCT = "RP2350B Core"
4+
USB_MANUFACTURER = "WeAct Studio"
5+
6+
CHIP_VARIANT = RP2350
7+
CHIP_PACKAGE = B
8+
CHIP_FAMILY = rp2
9+
10+
EXTERNAL_FLASH_DEVICES = "W25Q128JVxQ"
11+
12+
CIRCUITPY__EVE = 1

0 commit comments

Comments
 (0)