Skip to content

Commit

Permalink
Upgrade to v3.4.
Browse files Browse the repository at this point in the history
Signed-off-by: Pol Henarejos <[email protected]>
  • Loading branch information
polhenarejos committed Feb 19, 2025
1 parent f11017f commit 7aefacd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version=3.2
Version=3.4
4 changes: 2 additions & 2 deletions build_pico_openpgp.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

VERSION_MAJOR="3"
VERSION_MINOR="2"
VERSION_MINOR="4"
SUFFIX="${VERSION_MAJOR}.${VERSION_MINOR}"
#if ! [[ -z "${GITHUB_SHA}" ]]; then
# SUFFIX="${SUFFIX}.${GITHUB_SHA}"
Expand All @@ -17,7 +17,7 @@ for board in "$board_dir"/*
do
board_name="$(basename -- $board .h)"
rm -rf *
PICO_SDK_PATH="${PICO_SDK_PATH:-../../pico-sdk}" cmake .. -DPICO_BOARD=$board_name
PICO_SDK_PATH="${PICO_SDK_PATH}" cmake .. -DPICO_BOARD=$board_name
make -j`nproc`
mv pico_openpgp.uf2 ../release/pico_openpgp_$board_name-$SUFFIX.uf2
done
2 changes: 1 addition & 1 deletion src/openpgp/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#define PIV_VERSION_MINOR (PIV_VERSION & 0xff)


#define PIPGP_VERSION 0x0302
#define PIPGP_VERSION 0x0304

#define PIPGP_VERSION_MAJOR ((PIPGP_VERSION >> 8) & 0xff)
#define PIPGP_VERSION_MINOR (PIPGP_VERSION & 0xff)
Expand Down

0 comments on commit 7aefacd

Please sign in to comment.