-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.lock
More file actions
49 lines (44 loc) · 1.88 KB
/
Copy pathversions.lock
File metadata and controls
49 lines (44 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# PyBLE — pinned upstream versions.
#
# SPDX-License-Identifier: MIT
# Part of PyBLE (https://pyble.dev) — see /LICENSE.
#
# Single source of truth for the upstream versions every PyBLE firmware build
# pins. See docs/specifications/firmware.md §6 (Build & distribution) and the
# sibling note in firmware/upstream/README.md.
#
# BASELINE-SELECTED for firmware v0.4.2. These exact bytes select the public
# source baseline's MicroPython and ESP-IDF inputs before reproducible builds
# and OI-1 measurement. The subsequent evidence/policy commit candidate-freezes
# them before release builds, license audit, and HIL. The commit SHAs are
# authoritative, and the build gate verifies both upstream checkouts against
# this file.
#
# Update only via the controlled upgrade workflow
# (firmware/scripts/upgrade_micropython.sh) — never by hand during a build.
[micropython]
repo = "https://github.com/micropython/micropython"
ref = "v1.28.0"
commit = "e0e9fbb17ed6fd06bb76e266ae554784c9c80804"
[esp_idf]
repo = "https://github.com/espressif/esp-idf"
ref = "v5.5.1"
commit = "fcae32885b0296b32044cb99ecbdc50d98dddb83"
# Build targets — one MicroPython + ESP-IDF pin drives all three chips.
# Maps the PyBLE target name to its ESP-IDF target. Per-chip differences live
# in the board overlays (Layer 2: firmware/board_overlays/<target>/), not here.
[targets]
"esp32" = "esp32"
"esp32-s3" = "esp32s3"
"esp32-c3" = "esp32c3"
[toolchain]
# Compilers come from the pinned ESP-IDF install (xtensa-esp for esp32/-s3,
# riscv32-esp for -c3). mpy-cross is rebuilt from the pinned MicroPython.
source = "pinned-esp-idf"
mpy_cross = "rebuilt-from-pinned-micropython"
[pyble]
# Deliberately no board/board_profile/routing fields: PyBLE targets generic
# ESP32 boards and exposes hardware to user code via standard MicroPython
# (machine), not via the agent.
agent_version = "0.4.2"
protocol_version = "PBLE/1"