Skip to content

Commit 5703d1d

Browse files
authored
Merge branch 'master' into stm32x7-setup
2 parents a89928c + f47b964 commit 5703d1d

File tree

83 files changed

+3496
-96
lines changed

Some content is hidden

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

83 files changed

+3496
-96
lines changed

.github/workflows/build.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ jobs:
131131
- "arduino_nano_33_iot"
132132
- "arduino_zero"
133133
- "bast_pro_mini_m0"
134+
- "bdmicro_vina_m0"
134135
- "capablerobot_usbhub"
135136
- "catwan_usbstick"
136137
- "circuitbrains_basic_m0"
@@ -279,3 +280,49 @@ jobs:
279280
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
280281
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
281282
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))
283+
284+
build-riscv:
285+
runs-on: ubuntu-16.04
286+
needs: test
287+
strategy:
288+
fail-fast: false
289+
matrix:
290+
board:
291+
- "fomu"
292+
293+
steps:
294+
- name: Set up Python 3.5
295+
uses: actions/setup-python@v1
296+
with:
297+
python-version: 3.5
298+
- name: Install deps
299+
run: |
300+
sudo apt-get install -y gettext
301+
pip install requests sh click setuptools awscli
302+
wget https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-centos6.tar.gz
303+
sudo tar -C /usr --strip-components=1 -xaf riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-centos6.tar.gz
304+
- name: Versions
305+
run: |
306+
gcc --version
307+
riscv64-unknown-elf-gcc --version
308+
python3 --version
309+
- uses: actions/checkout@v1
310+
with:
311+
submodules: true
312+
- name: mpy-cross
313+
run: make -C mpy-cross -j2
314+
- name: build
315+
run: python3 -u build_release_files.py
316+
working-directory: tools
317+
env:
318+
BOARDS: ${{ matrix.board }}
319+
- uses: actions/[email protected]
320+
with:
321+
name: ${{ matrix.board }}
322+
path: bin/${{ matrix.board }}
323+
- name: Upload to S3
324+
run: "[ -z \"$AWS_ACCESS_KEY_ID\" ] || aws s3 cp bin/ s3://adafruit-circuit-python/bin/ --recursive --no-progress --region us-east-1"
325+
env:
326+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
327+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
328+
if: github.event_name == 'push' || (github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'rerequested'))

conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@
123123
"ports/atmel-samd/tools",
124124
"ports/cxd56/mkspk",
125125
"ports/cxd56/spresense-exported-sdk",
126+
"ports/litex/hw",
126127
"ports/minimal",
127128
"ports/mimxrt10xx/peripherals",
128129
"ports/mimxrt10xx/sdk",

locale/ID.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,11 @@ msgstr ""
398398
msgid "Buffer too large and unable to allocate"
399399
msgstr ""
400400

401+
#: shared-bindings/_bleio/PacketBuffer.c
402+
#, c-format
403+
msgid "Buffer too short by %d bytes"
404+
msgstr ""
405+
401406
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
402407
#: ports/nrf/common-hal/displayio/ParallelBus.c
403408
#, fuzzy, c-format

locale/circuitpython.pot

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,11 @@ msgstr ""
394394
msgid "Buffer too large and unable to allocate"
395395
msgstr ""
396396

397+
#: shared-bindings/_bleio/PacketBuffer.c
398+
#, c-format
399+
msgid "Buffer too short by %d bytes"
400+
msgstr ""
401+
397402
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
398403
#: ports/nrf/common-hal/displayio/ParallelBus.c
399404
#, c-format

locale/de_DE.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,11 @@ msgstr "Der Puffer muss eine Mindestenslänge von 1 haben"
398398
msgid "Buffer too large and unable to allocate"
399399
msgstr ""
400400

401+
#: shared-bindings/_bleio/PacketBuffer.c
402+
#, c-format
403+
msgid "Buffer too short by %d bytes"
404+
msgstr ""
405+
401406
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
402407
#: ports/nrf/common-hal/displayio/ParallelBus.c
403408
#, c-format

locale/en_US.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,11 @@ msgstr ""
394394
msgid "Buffer too large and unable to allocate"
395395
msgstr ""
396396

397+
#: shared-bindings/_bleio/PacketBuffer.c
398+
#, c-format
399+
msgid "Buffer too short by %d bytes"
400+
msgstr ""
401+
397402
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
398403
#: ports/nrf/common-hal/displayio/ParallelBus.c
399404
#, c-format

locale/en_x_pirate.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,11 @@ msgstr ""
398398
msgid "Buffer too large and unable to allocate"
399399
msgstr ""
400400

401+
#: shared-bindings/_bleio/PacketBuffer.c
402+
#, c-format
403+
msgid "Buffer too short by %d bytes"
404+
msgstr ""
405+
401406
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
402407
#: ports/nrf/common-hal/displayio/ParallelBus.c
403408
#, c-format

locale/es.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,11 @@ msgstr "Buffer debe ser de longitud 1 como minimo"
400400
msgid "Buffer too large and unable to allocate"
401401
msgstr ""
402402

403+
#: shared-bindings/_bleio/PacketBuffer.c
404+
#, c-format
405+
msgid "Buffer too short by %d bytes"
406+
msgstr ""
407+
403408
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
404409
#: ports/nrf/common-hal/displayio/ParallelBus.c
405410
#, c-format

locale/fil.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,11 @@ msgstr "Buffer dapat ay hindi baba sa 1 na haba"
400400
msgid "Buffer too large and unable to allocate"
401401
msgstr ""
402402

403+
#: shared-bindings/_bleio/PacketBuffer.c
404+
#, c-format
405+
msgid "Buffer too short by %d bytes"
406+
msgstr ""
407+
403408
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
404409
#: ports/nrf/common-hal/displayio/ParallelBus.c
405410
#, fuzzy, c-format

locale/fr.po

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,11 @@ msgstr "Le tampon doit être de longueur au moins 1"
404404
msgid "Buffer too large and unable to allocate"
405405
msgstr ""
406406

407+
#: shared-bindings/_bleio/PacketBuffer.c
408+
#, c-format
409+
msgid "Buffer too short by %d bytes"
410+
msgstr ""
411+
407412
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
408413
#: ports/nrf/common-hal/displayio/ParallelBus.c
409414
#, fuzzy, c-format

0 commit comments

Comments
 (0)