Skip to content

Commit d7975af

Browse files
authored
Merge branch 'adafruit:main' into pendrive-s3
2 parents 3cbad86 + b1e4bc3 commit d7975af

File tree

47 files changed

+115
-63
lines changed

Some content is hidden

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

47 files changed

+115
-63
lines changed

.github/workflows/custom-board-build.yml renamed to .github/workflows/build-board-custom.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Custom board build
1+
name: Build board (custom)
22

33
on:
44
workflow_dispatch:
@@ -21,6 +21,11 @@ on:
2121
description: 'Flags: Build flags (e.g. CIRCUITPY_WIFI=1)'
2222
required: false
2323
type: string
24+
branch:
25+
description: 'Branch (only if Version="latest")'
26+
required: false
27+
default: 'main'
28+
type: string
2429
debug:
2530
description: 'Make a debug build'
2631
required: false
@@ -36,7 +41,22 @@ jobs:
3641
- name: Set up repository
3742
run: |
3843
git clone --filter=tree:0 https://github.com/adafruit/circuitpython.git $GITHUB_WORKSPACE
44+
- name: Checkout head / tag
45+
run: |
3946
git checkout ${{ inputs.version == 'latest' && 'HEAD' || inputs.version }}
47+
- name: fork compatibility
48+
if: github.repository_owner != 'adafruit'
49+
run: |
50+
git remote add fork https://github.com/${{github.repository}}.git
51+
git fetch fork --filter=tree:0
52+
- name: branch compatibility
53+
if: inputs.branch != 'main' && inputs.version == 'latest' && github.repository_owner == 'adafruit'
54+
run: |
55+
git checkout ${{inputs.branch}}
56+
- name: branch compatibility (fork)
57+
if: inputs.branch != '' && inputs.version == 'latest' && github.repository_owner != 'adafruit'
58+
run: |
59+
git checkout -b fork-branch fork/${{inputs.branch}}
4060
- name: Set up identifier
4161
if: inputs.debug || inputs.flags != ''
4262
run: |

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install dependencies
3434
run: |
3535
sudo apt-get update
36-
sudo apt-get install -y gettext uncrustify
36+
sudo apt-get install -y gettext
3737
- name: Run pre-commit
3838
uses: pre-commit/[email protected]
3939
- name: Make patch

locale/circuitpython.pot

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1173,6 +1173,7 @@ msgstr ""
11731173
msgid "Interrupted by output function"
11741174
msgstr ""
11751175

1176+
#: ports/espressif/common-hal/espulp/ULP.c
11761177
#: ports/mimxrt10xx/common-hal/audiobusio/__init__.c
11771178
#: ports/mimxrt10xx/common-hal/pwmio/PWMOut.c
11781179
#: ports/raspberrypi/bindings/picodvi/Framebuffer.c

ports/atmel-samd/boards/hallowing_m0_express/board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "shared-module/displayio/mipi_constants.h"
1313
#include "shared-bindings/busio/SPI.h"
1414

15-
fourwire_fourwire_obj_t board_display_obj;
1615

1716
#define DELAY 0x80
1817

ports/atmel-samd/boards/hallowing_m4_express/board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#include "shared-module/displayio/__init__.h"
1414
#include "shared-module/displayio/mipi_constants.h"
1515

16-
fourwire_fourwire_obj_t board_display_obj;
1716

1817
#define DELAY 0x80
1918

ports/atmel-samd/boards/monster_m4sk/board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "shared-module/displayio/__init__.h"
1313
#include "shared-module/displayio/mipi_constants.h"
1414

15-
fourwire_fourwire_obj_t board_display_obj;
1615

1716
#define DELAY 0x80
1817

ports/atmel-samd/boards/openbook_m4/board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#include "shared-module/displayio/__init__.h"
1414
#include "shared-module/displayio/mipi_constants.h"
1515

16-
fourwire_fourwire_obj_t board_display_obj;
1716

1817
#define DELAY 0x80
1918
#define HEIGHT 400

ports/atmel-samd/boards/pewpew_lcd/board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "shared-module/displayio/__init__.h"
1313
#include "shared-module/displayio/mipi_constants.h"
1414

15-
fourwire_fourwire_obj_t board_display_obj;
1615

1716
#define DELAY 0x80
1817

ports/atmel-samd/boards/pewpew_m4/board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "shared-module/displayio/__init__.h"
1313
#include "shared-module/displayio/mipi_constants.h"
1414

15-
fourwire_fourwire_obj_t board_display_obj;
1615

1716
typedef struct {
1817
const uint32_t *config_data;

ports/atmel-samd/boards/pygamer/board.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#include "shared-module/displayio/mipi_constants.h"
1414
#include "supervisor/shared/board.h"
1515

16-
fourwire_fourwire_obj_t board_display_obj;
1716

1817
#define DELAY 0x80
1918

0 commit comments

Comments
 (0)