Skip to content

Commit c07fb9a

Browse files
committed
Merge branch 'port-ft90x' of https://github.com/ftdigdm/tinyusb into port-ft90x
2 parents 63e6aea + 6dd4060 commit c07fb9a

File tree

462 files changed

+14432
-9027
lines changed

Some content is hidden

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

462 files changed

+14432
-9027
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: 1 addition & 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:

.github/workflows/build_aarch64.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
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+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src/**'
14+
- 'examples/**'
15+
- 'lib/**'
16+
- 'hw/**'
17+
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
20+
cancel-in-progress: true
921

1022
jobs:
1123
# ---------------------------------------

.github/workflows/build_arm.yml

Lines changed: 16 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,25 @@
11
name: Build ARM
22

33
on:
4-
pull_request:
54
push:
6-
release:
7-
types:
8-
- created
9-
10-
jobs:
11-
# ---------------------------------------
12-
# Unit testing with Ceedling
13-
# ---------------------------------------
14-
unit-test:
15-
runs-on: ubuntu-latest
16-
steps:
17-
- name: Setup Ruby
18-
uses: ruby/setup-ruby@v1
19-
with:
20-
ruby-version: '2.7'
21-
22-
- name: Checkout TinyUSB
23-
uses: actions/checkout@v3
5+
paths:
6+
- 'src/**'
7+
- 'examples/**'
8+
- 'lib/**'
9+
- 'hw/**'
10+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src/**'
14+
- 'examples/**'
15+
- 'lib/**'
16+
- 'hw/**'
2417

25-
- name: Unit Tests
26-
run: |
27-
# Install Ceedling
28-
gem install ceedling
29-
cd test
30-
ceedling test:all
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
20+
cancel-in-progress: true
3121

22+
jobs:
3223
# ---------------------------------------
3324
# Build ARM family
3425
# ---------------------------------------

.github/workflows/build_esp.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
name: Build ESP
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+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src/**'
14+
- 'examples/**'
15+
- 'lib/**'
16+
- 'hw/**'
17+
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
20+
cancel-in-progress: true
921

1022
jobs:
1123
build-esp:

.github/workflows/build_msp430.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
name: Build MSP430
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+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src/**'
14+
- 'examples/**'
15+
- 'lib/**'
16+
- 'hw/**'
17+
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
20+
cancel-in-progress: true
921

1022
jobs:
1123
build-msp430:

.github/workflows/build_renesas.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
name: Build Renesas
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+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src/**'
14+
- 'examples/**'
15+
- 'lib/**'
16+
- 'hw/**'
17+
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
20+
cancel-in-progress: true
921

1022
jobs:
1123
build-rx:

.github/workflows/build_riscv.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
11
name: Build RISC-V
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+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src/**'
14+
- 'examples/**'
15+
- 'lib/**'
16+
- 'hw/**'
17+
18+
concurrency:
19+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
20+
cancel-in-progress: true
921

1022
jobs:
1123
build-riscv:
@@ -15,6 +27,7 @@ jobs:
1527
matrix:
1628
family:
1729
# Alphabetical order
30+
- 'ch32v307'
1831
- 'fomu'
1932
- 'gd32vf103'
2033
steps:

0 commit comments

Comments
 (0)