bump to 1.16.2

This commit is contained in:
liquidraver
2026-06-15 11:15:44 +02:00
parent 9c166ebefc
commit 979f60163d
3 changed files with 17 additions and 2 deletions
+1 -1
View File
@@ -405,7 +405,7 @@ add_definitions(-DFIRMWARE_BUILD_DATE="${ZEPHCORE_BUILD_DATE}")
# value; the per-app `#ifndef FIRMWARE_VERSION` fallbacks only apply to builds that
# bypass this injection. NOTE: the BLE DIS value in boards/common/zephcore_common.conf
# (CONFIG_BT_DIS_FW_REV_STR) is Kconfig, not C, so it must be bumped here AND there.
set(ZEPHCORE_FIRMWARE_VERSION "v1.16.1-zephyr")
set(ZEPHCORE_FIRMWARE_VERSION "v1.16.2-zephyr")
add_definitions(-DFIRMWARE_VERSION="${ZEPHCORE_FIRMWARE_VERSION}")
add_subdirectory(lib/monocypher)
+15
View File
@@ -0,0 +1,15 @@
# ESP32 debug overrides — applied automatically after debug.conf on ESP32.
#
# debug.conf is written for nRF52 + SEGGER RTT (J-Link). On ESP32 there is no
# J-Link, so RTT produces no output and only wastes ~4KB RAM; logs go out the
# UART/USB console backend instead. The classic ESP32 (T-Beam) is also DRAM
# bound, so the 8KB deferred log buffer doesn't fit. Drop RTT and shrink the
# log buffer here.
# No SEGGER RTT on ESP32 — use the console (UART) log backend.
CONFIG_USE_SEGGER_RTT=n
CONFIG_LOG_BACKEND_RTT=n
CONFIG_LOG_BACKEND_UART=y
# Smaller deferred log buffer (8KB -> 2KB) for the RAM-tight classic ESP32.
CONFIG_LOG_BUFFER_SIZE=2048
+1 -1
View File
@@ -151,7 +151,7 @@ CONFIG_BT_DIS_FW_REV=y
# of truth for the C side, injected as -DFIRMWARE_VERSION). This Kconfig value can't
# read a C macro, so it must be bumped here too. Phones that read DIS and phones
# that query CMD_DEVICE_QUERY should see the same version.
CONFIG_BT_DIS_FW_REV_STR="v1.16.1-zephyr"
CONFIG_BT_DIS_FW_REV_STR="v1.16.2-zephyr"
CONFIG_BT_DIS_SW_REV=y
CONFIG_BT_DIS_SW_REV_STR="Zephyr"
CONFIG_BT_DIS_PNP=n