Skip to content

Commit

Permalink
chore: bluetooth overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pfeerick authored May 12, 2024
1 parent c5ad8e7 commit 22aee50
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build-firmwares-bluetooth.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ for target in $target_names; do
if [[ ${TARGET_NAMES_BW[*]} =~ $re ]]; then
for lang in "${LANGUAGES_BW[@]}"; do
if [[ "${target}" =~ "x9dp2019" && "${lang}" == "CZ" ]]; then continue; fi # x9d+2019 CZ overflow
if [[ "${target}" =~ "zorro" && "${lang}" == "RU" ]]; then continue; fi # zorro RU overflow
if [[ "${target}" =~ "zorro" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "tx12mk2" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "pocket" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "commando8" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "x9e" && "${lang}" == "RU" ]]; then continue; fi # STM32F407xE RU overflow
if [[ "${target}" =~ "xlites" && "${lang}" == "RU" ]]; then continue; fi # xlites RU overflow
SRCDIR=${SRC_DIR} FLAVOR=${target} EXTRA_OPTIONS="-DTRANSLATIONS=${lang} -DBLUETOOTH=Y " "${SRC_DIR}/tools/build-gh.sh"
mv "${fw_name}" "${target}-${lang}-bluetooth-${GIT_SHA_SHORT}.bin"
done
Expand Down

0 comments on commit 22aee50

Please sign in to comment.