Merge pull request #2134 from clhenry/non-bus-powered-re-enumeration

Non-bus-powered MSP430 support.
This commit is contained in:
Ha Thach
2024-04-15 23:14:10 +07:00
committed by GitHub
12 changed files with 322 additions and 27 deletions

View File

@@ -61,10 +61,11 @@ jobs:
tar -C ~/cache/toolchain -xaf toolchain.tar.bz2
- name: Set Toolchain Path
run: echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
- name: Get Dependencies
run: python3 tools/get_deps.py ${{ matrix.family }}
run: |
echo >> $GITHUB_PATH `echo ~/cache/toolchain/*/bin`
sudo apt install -y ninja-build
- name: Build
run: python3 tools/build_make.py ${{ matrix.family }}
run: |
python3 tools/get_deps.py ${{ matrix.family }}
python tools/build_cmake.py ${{ matrix.family }} -DCMAKE_BUILD_TYPE=MinSizeRel