Skip to content

Commit

Permalink
exp/mmw-int: Add firmware
Browse files Browse the repository at this point in the history
Signed-off-by: João Silva <jgc3silva@gmail.com>
  • Loading branch information
vankxr committed May 30, 2024
1 parent 9449ddc commit b5a8cc3
Show file tree
Hide file tree
Showing 44 changed files with 7,476 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/exp-mmw-int-fw-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Integrated mmWave Expantion board MCU firmware build tests

on:
pull_request:
paths:
- "software/exp/mmw-int/**"
branches: [ "v2" ]
push:
paths:
- "software/exp/mmw-int/**"
branches: [ "v2" ]
workflow_dispatch:

env:
ARM_LIBROOT: "/opt/arm-cmsis"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Update install
run:
sudo apt-get update
timeout-minutes: 5

- name: Install toolchain
uses: carlosperate/arm-none-eabi-gcc-action@v1

- name: Install build dependencies
run: |
# Install armmem
wget https://github.com/vankxr/armmem/releases/download/1.0-1/armmem_1.0-1_amd64.deb
sudo dpkg -i armmem_1.0-1_amd64.deb
# Install Core pack
git clone https://github.com/vankxr/Core-CMSIS
cd Core-CMSIS/build
chmod +x build.sh
./build.sh
sudo mkdir -p $ARM_LIBROOT
sudo mv ARM.CMSIS.5.9.0 $ARM_LIBROOT/ARM.CMSIS
# Install SAMD21 pack
sudo mkdir -p $ARM_LIBROOT/Microchip.SAMD21_DFP
wget -O Microchip.SAMD21_DFP.3.6.144.zip https://packs.download.microchip.com/Microchip.SAMD21_DFP.3.6.144.atpack
unzip Microchip.SAMD21_DFP.3.6.144.zip -d $ARM_LIBROOT/Microchip.SAMD21_DFP
timeout-minutes: 5

- uses: actions/checkout@v3
with:
fetch-depth: 1
clean: true

- name: Build integrated mmW Expantion MCU firmware
run: |
cd ${{github.workspace}}/software/exp/mmw-int
make
- name: Upload results
uses: actions/upload-artifact@v3
with:
name: exp_mmw_int_firmware
path: ${{github.workspace}}/software/exp/mmw-int/bin/v*
retention-days: 30
7 changes: 7 additions & 0 deletions software/exp/mmw-int/.vscode/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
*

!.gitignore
!c_cpp_properties.json
!launch.json
!tasks.json
!get_gcc_defines.sh
Loading

0 comments on commit b5a8cc3

Please sign in to comment.