Skip to content

Commit a896129

Browse files
committed
Add libusb to docker for openocd
missing v5.4.1 ref.
1 parent fc9fcb8 commit a896129

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.devcontainer/All/Dockerfile.All.SRC

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ RUN apt-get update \
5555
ninja-build \
5656
srecord \
5757
nodejs \
58-
libffi-dev
58+
libffi-dev \
59+
libusb-1.0
5960

6061
# Create needed directories
6162
RUN mkdir -p /usr/local/bin/gcc \

.devcontainer/ESP32/Dockerfile.ESP32.SRC

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ RUN apt-get update \
3939
ninja-build \
4040
srecord \
4141
nodejs \
42-
libffi-dev
42+
libffi-dev \
43+
libusb-1.0
4344

4445
# Create needed directories
4546
RUN mkdir -p /usr/local/bin/gcc

CMake/binutils.ESP32.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ macro(nf_add_idf_as_library)
10571057
TARGET ${NANOCLR_PROJECT_NAME}.elf POST_BUILD
10581058
COMMAND ${output_idf_size}
10591059
--archives ${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}.map
1060-
COMMENT "Ouptut IDF size summary")
1060+
COMMENT "Output IDF size summary")
10611061

10621062
endmacro()
10631063

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ resources:
4444
type: github
4545
name: espressif/esp-idf
4646
endpoint: nanoframework
47-
ref: refs/tags/v5.2.3
47+
ref: refs/tags/v5.4.1
4848
- repository: mscorlib
4949
type: github
5050
name: nanoframework/CoreLibrary
@@ -528,7 +528,7 @@ jobs:
528528
IDF_PATH: "D:/a/1/s/esp-idf"
529529
PIP_CACHE_DIR: $(Pipeline.Workspace)/.pip
530530
TargetPlatform: "esp32"
531-
IDF_TAG: "v5.2.3"
531+
IDF_TAG: "v5.4.1"
532532

533533
steps:
534534
- checkout: self

0 commit comments

Comments
 (0)