Skip to content

Commit 05e0205

Browse files
committed
Merge branch 'master' into renesas-ra
2 parents ea81d22 + be66f5f commit 05e0205

File tree

786 files changed

+53591
-18144
lines changed

Some content is hidden

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

786 files changed

+53591
-18144
lines changed

.codespell/exclude-file.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
return USB0.INTSTS1.BIT.ATTCH ? true : false;

.codespell/ignore-words.txt

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

.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 = .cproject,./.git,./hw/mcu,./lib,./examples/*/*/_build,./examples/*/*/ses,./examples/*/*/ozone,./hw/mcu,./test/unit-test/vendor,./tests_obsolete,./tools/uf2

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ body:
6464
placeholder: |
6565
Attach your debug log txt file here, where the issue occurred, best with comments to explain the actual events.
6666
67-
Note1: Please DO NOT paste your lengthy log contents here since it hurts the readibility.
67+
Note1: Please DO NOT paste your lengthy log contents here since it hurts the readability.
6868
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:
@@ -76,3 +76,11 @@ body:
7676
description: If applicable, add screenshots to help explain your problem.
7777
validations:
7878
required: false
79+
80+
- type: checkboxes
81+
attributes:
82+
label: I have checked existing issues, dicussion and documentation
83+
description: You agree to check all the resources above before opening a new issue.
84+
options:
85+
- label: I confirm I have checked existing issues, dicussion and documentation.
86+
required: true

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
labels: 'Feature 💡'
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this request!
9+
It's okay to leave some blank if it doesn't apply to your request.
10+
11+
- type: input
12+
attributes:
13+
label: Related area
14+
description: Please briefly explain the area of your Feature Request.
15+
placeholder: eg. new port support, device stack, class driver ...
16+
validations:
17+
required: true
18+
19+
- type: input
20+
attributes:
21+
label: Hardware specification
22+
description: Please provide if your proposal depends on specific Hardware.
23+
placeholder: eg. rp2040, samd51 ...
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
attributes:
29+
label: Is your feature request related to a problem?
30+
description: Please provide a clear and concise description of what the problem is. Add relevant issue link.
31+
placeholder: ex. I'm facing the issue/missing function...
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
attributes:
37+
label: Describe the solution you'd like
38+
description: Please provide a clear and concise description of what you want to happen.
39+
placeholder: ex. When using this function...
40+
validations:
41+
required: true
42+
43+
- type: checkboxes
44+
attributes:
45+
label: I have checked existing issues, dicussion and documentation
46+
description: You agree to check all the resources above before opening a new issue.
47+
options:
48+
- label: I confirm I have checked existing issues, dicussion and documentation.
49+
required: true

.github/workflows/build_aarch64.yml

Lines changed: 25 additions & 6 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,7 +35,9 @@ 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
@@ -39,7 +55,7 @@ jobs:
3955
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
4056

4157
- name: Cache Toolchain
42-
uses: actions/cache@v2
58+
uses: actions/cache@v3
4359
id: cache-toolchain
4460
with:
4561
path: ~/cache/
@@ -55,6 +71,9 @@ jobs:
5571
- name: Set Toolchain Path
5672
run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
5773

74+
- name: Get Dependencies
75+
run: python3 tools/get_dependencies.py ${{ matrix.family }}
76+
5877
- name: Build
5978
run: python3 tools/build_family.py ${{ matrix.family }}
6079

0 commit comments

Comments
 (0)