summaryrefslogtreecommitdiffstats
path: root/tinyusb/.github
diff options
context:
space:
mode:
Diffstat (limited to 'tinyusb/.github')
m---------tinyusb0
-rwxr-xr-xtinyusb/.github/ISSUE_TEMPLATE/bug_report.yml74
-rwxr-xr-xtinyusb/.github/ISSUE_TEMPLATE/config.yml4
-rwxr-xr-xtinyusb/.github/ISSUE_TEMPLATE/feature_request.md14
-rwxr-xr-xtinyusb/.github/pull_request_template.md5
-rwxr-xr-xtinyusb/.github/workflows/build.yml144
-rwxr-xr-xtinyusb/.github/workflows/build_esp.yml35
-rwxr-xr-xtinyusb/.github/workflows/build_msp430.yml50
-rwxr-xr-xtinyusb/.github/workflows/build_renesas.yml51
-rwxr-xr-xtinyusb/.github/workflows/build_riscv.yml51
-rwxr-xr-xtinyusb/.github/workflows/trigger.yml58
11 files changed, 0 insertions, 486 deletions
diff --git a/tinyusb b/tinyusb
new file mode 160000
+Subproject f8288be03f28ad7b944e6925f49422dfa39202c
diff --git a/tinyusb/.github/ISSUE_TEMPLATE/bug_report.yml b/tinyusb/.github/ISSUE_TEMPLATE/bug_report.yml
deleted file mode 100755
index 291b2207..00000000
--- a/tinyusb/.github/ISSUE_TEMPLATE/bug_report.yml
+++ /dev/null
@@ -1,74 +0,0 @@
-name: Bug Report
-description: Report a problem with TinyUSB
-labels: 'Bug 🐞'
-body:
- - type: markdown
- attributes:
- value: |
- Thanks for taking the time to fill out this bug report!
- It's okay to leave some blank if it doesn't apply to your problem.
-
- - type: dropdown
- attributes:
- label: Operating System
- options:
- - Linux
- - MacOS
- - RaspberryPi OS
- - Windows 7
- - Windows 10
- - Windows 11
- - Others
- validations:
- required: true
-
- - type: input
- attributes:
- label: Board
- placeholder: e.g Feather nRF52840 Express
- validations:
- required: true
-
- - type: textarea
- attributes:
- label: Firmware
- placeholder: |
- e.g examples/device/cdc_msc.
- If it is custom firmware, please provide links to your minimal sources or as attached files.
- validations:
- required: true
-
- - type: textarea
- attributes:
- label: What happened ?
- placeholder: A clear and concise description of what the bug is.
- validations:
- required: true
-
- - type: textarea
- attributes:
- label: How to reproduce ?
- placeholder: |
- 1. Go to '...'
- 2. Click on '....'
- 3. See error
- validations:
- required: true
-
- - type: textarea
- attributes:
- label: Debug Log
- placeholder: |
- TinyUSB debug log where the issue occurred as attached txt file, best with comments to explain the actual events.
-
- Note: 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.
- More information can be found at [example's readme](https://github.com/hathach/tinyusb/blob/master/docs/getting_started.md)
- validations:
- required: false
-
- - type: textarea
- attributes:
- label: Screenshots
- description: If applicable, add screenshots to help explain your problem.
- validations:
- required: false
diff --git a/tinyusb/.github/ISSUE_TEMPLATE/config.yml b/tinyusb/.github/ISSUE_TEMPLATE/config.yml
deleted file mode 100755
index 735a5ef2..00000000
--- a/tinyusb/.github/ISSUE_TEMPLATE/config.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-contact_links:
- - name: TinyUSB Discussion
- url: https://github.com/hathach/tinyusb/discussions
- about: If you have other questions or need help, post it here.
diff --git a/tinyusb/.github/ISSUE_TEMPLATE/feature_request.md b/tinyusb/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100755
index 562d3113..00000000
--- a/tinyusb/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-name: Feature Request
-about: Suggest an idea for this project
-title: ''
-labels: Feature 💡
-assignees: ''
-
----
-
-**Is your feature request related to a problem? Please describe.**
-A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
-
-**Describe the solution you'd like**
-A clear and concise description of what you want to happen.
diff --git a/tinyusb/.github/pull_request_template.md b/tinyusb/.github/pull_request_template.md
deleted file mode 100755
index aa148eb7..00000000
--- a/tinyusb/.github/pull_request_template.md
+++ /dev/null
@@ -1,5 +0,0 @@
-**Describe the PR**
-A clear and concise description of what this PR solve.
-
-**Additional context**
-If applicable, add any other context about the PR and/or screenshots here.
diff --git a/tinyusb/.github/workflows/build.yml b/tinyusb/.github/workflows/build.yml
deleted file mode 100755
index 8ef19b0a..00000000
--- a/tinyusb/.github/workflows/build.yml
+++ /dev/null
@@ -1,144 +0,0 @@
-name: Build ARM
-
-on:
- pull_request:
- push:
- release:
- types:
- - created
-
-jobs:
- # ---------------------------------------
- # Unit testing with Ceedling
- # ---------------------------------------
- unit-test:
- runs-on: ubuntu-latest
- steps:
- - name: Setup Ruby
- uses: actions/setup-ruby@v1
- with:
- ruby-version: '2.7'
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
-
- - name: Unit Tests
- run: |
- # Install Ceedling
- gem install ceedling
- cd test
- ceedling test:all
-
- # ---------------------------------------
- # Build ARM family
- # ---------------------------------------
- build-arm:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- family:
- # Alphabetical order
- - 'imxrt'
- - 'lpc15'
- - 'lpc18'
- - 'lpc54'
- - 'lpc55'
- - 'nrf'
- - 'rp2040'
- - 'samd11'
- - 'samd21'
- - 'samd51'
- - 'saml2x'
- - 'stm32f0'
- - 'stm32f1'
- - 'stm32f4'
- - 'stm32f7'
- - 'stm32h7'
- steps:
- - name: Setup Python
- uses: actions/setup-python@v2
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
-
- - name: Checkout common submodules in lib
- run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip lib/sct_neopixel
-
- - name: Checkout pico-sdk
- if: matrix.family == 'rp2040'
- run: |
- git clone --depth 1 -b develop https://github.com/raspberrypi/pico-sdk ~/pico-sdk
- echo >> $GITHUB_ENV PICO_SDK_PATH=~/pico-sdk
-
- - name: Set Toolchain URL
- run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v10.2.1-1.1/xpack-arm-none-eabi-gcc-10.2.1-1.1-linux-x64.tar.gz
-
- - name: Cache Toolchain
- uses: actions/cache@v2
- id: cache-toolchain
- with:
- path: ~/cache/
- key: ${{ runner.os }}-21-03-04-${{ env.TOOLCHAIN_URL }}
-
- - name: Install Toolchain
- if: steps.cache-toolchain.outputs.cache-hit != 'true'
- run: |
- mkdir -p ~/cache/toolchain
- wget --progress=dot:mega $TOOLCHAIN_URL -O toolchain.tar.gz
- tar -C ~/cache/toolchain -xaf toolchain.tar.gz
-
- - name: Set Toolchain Path
- run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
-
- - name: Build
- run: python3 tools/build_family.py ${{ matrix.family }}
-
- # ---------------------------------------
- # Build all no-family (opharned) boards
- # ---------------------------------------
- build-board:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- example:
- # Alphabetical order, a group of 4
- - 'device/audio_test device/board_test device/cdc_dual_ports device/cdc_msc'
- - 'device/cdc_msc_freertos device/dfu_runtime device/hid_composite device/hid_composite_freertos'
- - 'device/hid_generic_inout device/hid_multiple_interface device/midi_test device/msc_dual_lun'
- - 'device/net_lwip_webserver'
- - 'device/uac2_headset device/usbtmc device/webusb_serial host/cdc_msc_hid'
-
- steps:
- - name: Setup Python
- uses: actions/setup-python@v2
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
-
- - name: Checkout common submodules in lib
- run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
-
- - name: Set Toolchain URL
- run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v10.2.1-1.1/xpack-arm-none-eabi-gcc-10.2.1-1.1-linux-x64.tar.gz
-
- - name: Cache Toolchain
- uses: actions/cache@v2
- id: cache-toolchain
- with:
- path: ~/cache/
- key: ${{ runner.os }}-21-03-04-${{ env.TOOLCHAIN_URL }}
-
- - name: Install Toolchain
- if: steps.cache-toolchain.outputs.cache-hit != 'true'
- run: |
- mkdir -p ~/cache/toolchain
- wget --progress=dot:mega $TOOLCHAIN_URL -O toolchain.tar.gz
- tar -C ~/cache/toolchain -xaf toolchain.tar.gz
-
- - name: Set Toolchain Path
- run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
-
- - name: Build
- run: python3 tools/build_board.py ${{ matrix.example }}
diff --git a/tinyusb/.github/workflows/build_esp.yml b/tinyusb/.github/workflows/build_esp.yml
deleted file mode 100755
index 25f4e68f..00000000
--- a/tinyusb/.github/workflows/build_esp.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: Build ESP
-
-on:
- pull_request:
- push:
- release:
- types:
- - created
-
-jobs:
- build-esp:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- board:
- # Alphabetical order
- # ESP32-S2
- - 'espressif_saola_1'
- # ESP32-S3
- # latest IDF does not define USB0 in linker
- #- 'espressif_addax_1'
-
- steps:
- - name: Setup Python
- uses: actions/setup-python@v2
-
- - name: Pull ESP-IDF docker
- run: docker pull espressif/idf:latest
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
-
- - name: Build
- run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32sx.py ${{ matrix.board }}
diff --git a/tinyusb/.github/workflows/build_msp430.yml b/tinyusb/.github/workflows/build_msp430.yml
deleted file mode 100755
index ff2ce72c..00000000
--- a/tinyusb/.github/workflows/build_msp430.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-name: Build MSP430
-
-on:
- pull_request:
- push:
- release:
- types:
- - created
-
-jobs:
- build-msp430:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- family:
- # Alphabetical order
- - 'msp430'
- steps:
- - name: Setup Python
- uses: actions/setup-python@v2
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
-
- - name: Checkout common submodules in lib
- run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
-
- - name: Set Toolchain URL
- run: echo >> $GITHUB_ENV TOOLCHAIN_URL=http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/9_2_0_0/export/msp430-gcc-9.2.0.50_linux64.tar.bz2
-
- - name: Cache Toolchain
- uses: actions/cache@v2
- id: cache-toolchain
- with:
- path: ~/cache/
- key: ${{ runner.os }}-21-03-04-${{ env.TOOLCHAIN_URL }}
-
- - name: Install Toolchain
- if: steps.cache-toolchain.outputs.cache-hit != 'true'
- run: |
- mkdir -p ~/cache/toolchain
- wget --progress=dot:mega $TOOLCHAIN_URL -O toolchain.tar.bz2
- tar -C ~/cache/toolchain -xaf toolchain.tar.bz2
-
- - name: Set Toolchain Path
- run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
-
- - name: Build
- run: python3 tools/build_family.py ${{ matrix.family }}
diff --git a/tinyusb/.github/workflows/build_renesas.yml b/tinyusb/.github/workflows/build_renesas.yml
deleted file mode 100755
index ee9ba828..00000000
--- a/tinyusb/.github/workflows/build_renesas.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-name: Build Renesas
-
-on:
- pull_request:
- push:
- release:
- types:
- - created
-
-jobs:
- build-rx:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- family:
- # Alphabetical order
- - 'rx'
- steps:
- - name: Setup Python
- uses: actions/setup-python@v2
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
-
- - name: Checkout common submodules in lib
- run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
-
- - name: Set Toolchain URL
- run: echo >> $GITHUB_ENV TOOLCHAIN_URL=http://gcc-renesas.com/downloads/get.php?f=rx/8.3.0.202004-gnurx/gcc-8.3.0.202004-GNURX-ELF.run
-
- - name: Cache Toolchain
- uses: actions/cache@v2
- id: cache-toolchain
- with:
- path: ~/cache/
- key: ${{ runner.os }}-21-03-30-${{ env.TOOLCHAIN_URL }}
-
- - name: Install Toolchain
- if: steps.cache-toolchain.outputs.cache-hit != 'true'
- run: |
- mkdir -p ~/cache/toolchain/gnurx
- wget --progress=dot:mega $TOOLCHAIN_URL -O toolchain.run
- chmod +x toolchain.run
- ./toolchain.run -p ~/cache/toolchain/gnurx -y
-
- - name: Set Toolchain Path
- run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
-
- - name: Build
- run: python3 tools/build_family.py ${{ matrix.family }}
diff --git a/tinyusb/.github/workflows/build_riscv.yml b/tinyusb/.github/workflows/build_riscv.yml
deleted file mode 100755
index 78510751..00000000
--- a/tinyusb/.github/workflows/build_riscv.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-name: Build RISC-V
-
-on:
- pull_request:
- push:
- release:
- types:
- - created
-
-jobs:
- build-riscv:
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- family:
- # Alphabetical order
- - 'fomu'
- - 'gd32vf103'
- steps:
- - name: Setup Python
- uses: actions/setup-python@v2
-
- - name: Checkout TinyUSB
- uses: actions/checkout@v2
-
- - name: Checkout common submodules in lib
- run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
-
- - name: Set Toolchain URL
- run: echo >> $GITHUB_ENV TOOLCHAIN_URL=https://github.com/xpack-dev-tools/riscv-none-embed-gcc-xpack/releases/download/v10.1.0-1.1/xpack-riscv-none-embed-gcc-10.1.0-1.1-linux-x64.tar.gz
-
- - name: Cache Toolchain
- uses: actions/cache@v2
- id: cache-toolchain
- with:
- path: ~/cache/
- key: ${{ runner.os }}-21-03-04-${{ env.TOOLCHAIN_URL }}
-
- - name: Install Toolchain
- if: steps.cache-toolchain.outputs.cache-hit != 'true'
- run: |
- mkdir -p ~/cache/toolchain
- wget --progress=dot:mega $TOOLCHAIN_URL -O toolchain.tar.gz
- tar -C ~/cache/toolchain -xaf toolchain.tar.gz
-
- - name: Set Toolchain Path
- run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
-
- - name: Build
- run: python3 tools/build_family.py ${{ matrix.family }}
diff --git a/tinyusb/.github/workflows/trigger.yml b/tinyusb/.github/workflows/trigger.yml
deleted file mode 100755
index 40750a2f..00000000
--- a/tinyusb/.github/workflows/trigger.yml
+++ /dev/null
@@ -1,58 +0,0 @@
-name: Trigger Repos
-
-on:
- push:
- branches: master
- release:
- types:
- - created
-
-jobs:
- trigger-mynewt:
- if: github.repository == 'hathach/tinyusb'
- runs-on: ubuntu-latest
- steps:
- - name: Trigger mynewt-tinyusb-example
- shell: bash
- run: |
- curl -X POST -H "Authorization: token ${{ secrets.API_TOKEN_GITHUB }}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" --data '{"event_type": "rebuild"}' https://api.github.com/repos/hathach/mynewt-tinyusb-example/dispatches
-
- mirror-tinyusb-src:
- if: github.repository == 'hathach/tinyusb'
- runs-on: ubuntu-latest
- steps:
- - name: Checkout code
- uses: actions/checkout@v2
-
- - name: Push to tinyusb_src
- run: |
- # clone tinyusb_src with PAT
- git config --global user.email "thach@tinyusb.org"
- git config --global user.name "hathach"
- git clone --depth 1 --single-branch --branch main "https://${{ secrets.API_TOKEN_GITHUB }}@github.com/hathach/tinyusb_src.git" tinyusb_src
-
- # Remove all files
- rm -rf tinyusb_src/*
-
- # Copy src and other files
- cp -r src tinyusb_src/
- cp LICENSE tinyusb_src/
- cd tinyusb_src
-
- # Commit if there is changes
- if [ -n "$(git status --porcelain)" ]; then
- git add .
- git commit --message "Update from https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA"
- git push
- fi
-
- - name: Create tinyusb_src Release
- if: ${{ github.event_name == 'release' }}
- run: |
- # Push tag
- cd tinyusb_src
- git tag ${{ github.event.release.tag_name }}
- git push origin ${{ github.event.release.tag_name }}
-
- # Send POST reqwuest to release https://docs.github.com/en/rest/reference/repos#create-a-release
- curl -X POST -H "Authorization: token ${{ secrets.API_TOKEN_GITHUB }}" -H "Accept: application/vnd.github.v3+json" --data '{"tag_name": "${{ github.event.release.tag_name }}", "name": "${{ github.event.release.name }}", "body": "${{ github.event.release.body }}", "draft": ${{ github.event.release.draft }}, "prerelease": ${{ github.event.release.prerelease }}}' https://api.github.com/repos/hathach/tinyusb_src/releases