Skip to content

Commit bdfcd50

Browse files
committed
Merge branch 'master' into portability
2 parents 73f22e3 + 65ee11f commit bdfcd50

File tree

1,109 files changed

+57873
-19704
lines changed

Some content is hidden

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

1,109 files changed

+57873
-19704
lines changed

.codespell/ignore-words.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
synopsys
2+
sie
3+
tre
4+
hsi
5+
fro
6+
dout
7+
mot
8+
te
9+
attch
10+
endianess
11+
pris

.codespellrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# See: https://github.com/codespell-project/codespell#using-a-config-file
2+
[codespell]
3+
# In the event of a false positive, add the problematic word, in all lowercase, to 'ignore-words.txt' (one word per line).
4+
# Or copy & paste the whole problematic line to 'exclude-file.txt'
5+
ignore-words = .codespell/ignore-words.txt
6+
exclude-file = .codespell/exclude-file.txt
7+
check-filenames =
8+
check-hidden =
9+
count =
10+
skip = *.rb,.cproject,.git,./lib,./examples/*/*/_build,./examples/*/*/ses,./examples/*/*/ozone,./hw/mcu,./tests_obsolete

.gitattributes

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Set the default behavior, in case people don't have core.autocrlf set.
22
* text=auto
33

4-
*.c text
5-
*.cpp text
4+
*.c text
5+
*.cpp text
66
*.h text
7-
*.icf text
7+
*.icf text
88
*.js text
99
*.json text
1010
*.ld text

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ body:
5454
Exact steps in chronological order, details should be specific e.g if you use a command/script to test with, please post it as well.
5555
1. Go to '...'
5656
2. Click on '....'
57-
3. See error
57+
3. See error
5858
validations:
5959
required: true
6060

@@ -63,9 +63,9 @@ body:
6363
label: Debug Log as txt file
6464
placeholder: |
6565
Attach your debug log txt file here, where the issue occurred, best with comments to explain the actual events.
66-
67-
Note1: Please DO NOT paste your lengthy log contents here since it hurts the readibility.
68-
Note2: To enable logging, add `LOG=3` to to the make command if building with stock examples or set `CFG_TUSB_DEBUG=3` in your tusb_config.h.
66+
67+
Note1: Please DO NOT paste your lengthy log contents here since it hurts the readability.
68+
Note2: To enable logging, add `LOG=3` to to the make command if building with stock examples or set `CFG_TUSB_DEBUG=3` in your tusb_config.h.
6969
More information can be found at [example's readme](https://github.com/hathach/tinyusb/blob/master/docs/getting_started.md)
7070
validations:
7171
required: false

.github/workflows/build_aarch64.yml

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
11
name: Build AArch64
22

33
on:
4-
pull_request:
54
push:
6-
release:
7-
types:
8-
- created
5+
paths:
6+
- 'src/**'
7+
- 'examples/**'
8+
- 'lib/**'
9+
- 'hw/**'
10+
- '.github/workflows/build_aarch64.yml'
11+
pull_request:
12+
branches: [ master ]
13+
paths:
14+
- 'src/**'
15+
- 'examples/**'
16+
- 'lib/**'
17+
- 'hw/**'
18+
- '.github/workflows/build_aarch64.yml'
19+
20+
concurrency:
21+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
22+
cancel-in-progress: true
923

1024
jobs:
1125
# ---------------------------------------
@@ -21,14 +35,13 @@ jobs:
2135
- 'broadcom_64bit'
2236
steps:
2337
- name: Setup Python
24-
uses: actions/setup-python@v2
38+
uses: actions/setup-python@v4
39+
with:
40+
python-version: '3.x'
2541

2642
- name: Checkout TinyUSB
2743
uses: actions/checkout@v3
2844

29-
- name: Checkout common submodules in lib
30-
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
31-
3245
- name: Checkout hathach/linkermap
3346
uses: actions/checkout@v3
3447
with:
@@ -39,7 +52,7 @@ jobs:
3952
run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-aarch64-none-elf.tar.xz
4053

4154
- name: Cache Toolchain
42-
uses: actions/cache@v2
55+
uses: actions/cache@v3
4356
id: cache-toolchain
4457
with:
4558
path: ~/cache/
@@ -56,7 +69,7 @@ jobs:
5669
run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
5770

5871
- name: Get Dependencies
59-
run: python3 tools/get_dependencies.py ${{ matrix.family }}
72+
run: python3 tools/get_family_deps.py ${{ matrix.family }}
6073

6174
- name: Build
6275
run: python3 tools/build_family.py ${{ matrix.family }}

0 commit comments

Comments
 (0)