Skip to content

Commit

Permalink
Merge pull request #55 from kienvo/usbc-ver
Browse files Browse the repository at this point in the history
feat: Add a build option for USB-C version
  • Loading branch information
fcartegnie authored Sep 30, 2024
2 parents 2a730ef + 44a03c9 commit c2fbdd3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:

env:
MRS_TOOLCHAIN: MRS_Toolchain_Linux_x64_V1.91
BUILD_DIR: build
USBC_BUILD_DIR: usb-c
MICROB_BUILD_DIR: micro-b
BIN_TYPES: '{.bin,.elf}'

jobs:
Expand All @@ -32,13 +33,15 @@ jobs:
- name: Build firmware
run: |
export PREFIX=${{ env.MRS_TOOLCHAIN }}/RISC-V_Embedded_GCC/bin/riscv-none-embed-
export BUILD_DIR=${{ env.BUILD_DIR }}
make -j$(nproc)
BUILD_DIR=${{ env.USBC_BUILD_DIR }} USBC_VERSION=1 make -j$(nproc)
BUILD_DIR=${{ env.MICROB_BUILD_DIR }} make -j$(nproc)
- uses: actions/upload-artifact@v4
with:
name: badgemagic-firmware
path: ${{ env.BUILD_DIR }}/badgemagic-*
path: |
${{ env.USBC_BUILD_DIR }}/badgemagic-*
${{ env.MICROB_BUILD_DIR }}/badgemagic-*
# Skip upload APK for pull requests & only allow binaries build from master
- if: ${{ github.event_name != 'pull_request' && github.ref_name == 'master' }}
Expand All @@ -47,10 +50,9 @@ jobs:
git config --global user.name "${{ github.workflow }}"
git config --global user.email "gh-actions@${{ github.repository_owner }}"
mv ${{ env.BUILD_DIR }}/badgemagic-*${{ env.BIN_TYPES }} ./
git checkout --orphan bin
git reset
git add badgemagic-*${{ env.BIN_TYPES }}
git add ${{ env.USBC_BUILD_DIR }}/badgemagic-*${{ env.BIN_TYPES }}
git add ${{ env.MICROB_BUILD_DIR }}/badgemagic-*${{ env.BIN_TYPES }}
git commit -am "[Auto] Update firmware binaries from ${{ github.ref_name }} ($(date +%Y-%m-%d.%H:%M:%S))"
git push --force origin bin
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ TARGET = badgemagic-ch582
######################################
# Uncomment below line to enable debugging
# DEBUG = 1
# Uncomment below to build for USB-C version
# USBC_VERSION = 1
# optimization for size
OPT = -Os

Expand Down Expand Up @@ -120,6 +122,10 @@ ifeq ($(DEBUG), 1)
CFLAGS += -g -gdwarf-2 -DDEBUG=$(DEBUG)
endif

ifeq ($(USBC_VERSION), 1)
CFLAGS += -DUSBC_VERSION=$(USBC_VERSION)
endif


# Generate dependency information
CFLAGS += -MMD -MP
Expand Down
4 changes: 4 additions & 0 deletions src/leddrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ static const pinctrl_t led_pins[LED_PINCOUNT] = {
PINCTRL(B, 4), // Q
PINCTRL(B, 2), // R
PINCTRL(B, 1), // S
#ifdef USBC_VERSION
PINCTRL(B, 6), // T
#else
PINCTRL(B, 23), // T
#endif
PINCTRL(B, 21), // U
PINCTRL(B, 20), // V
PINCTRL(B, 19), // W
Expand Down

0 comments on commit c2fbdd3

Please sign in to comment.