[beken-72xx] Re-enable OTA encryption

This commit is contained in:
Kuba Szczodrzyński
2023-03-11 16:59:57 +01:00
parent 8f447a4a72
commit c4a3e9e2ee
2 changed files with 5 additions and 3 deletions

View File

@@ -3,8 +3,10 @@
"f_cpu": "120000000L", "f_cpu": "120000000L",
"prefix": "arm-none-eabi-", "prefix": "arm-none-eabi-",
"bkota": { "bkota": {
"encryption": "none", "encryption": "aes256",
"compression": "gzip" "compression": "gzip",
"key": "0123456789ABCDEF0123456789ABCDEF",
"iv": "0123456789ABCDEF"
} }
}, },
"connectivity": [ "connectivity": [

View File

@@ -17,7 +17,7 @@ from platformio.platform.base import PlatformBase
from platformio.platform.board import PlatformBoardConfig from platformio.platform.board import PlatformBoardConfig
from semantic_version import SimpleSpec, Version from semantic_version import SimpleSpec, Version
LTCHIPTOOL_VERSION = "^3.0.0" LTCHIPTOOL_VERSION = "^3.0.1"
# Install & import tools # Install & import tools