Skip to content

Commit

Permalink
fix(setup/esp32): update esp-idf version from 4.4.2 to 4.4.3 (#134)
Browse files Browse the repository at this point in the history
* Update esp32.ts

* Update esp32.ts

Changed version from 4.2.2 to 4.3.3
  • Loading branch information
jaykesarkar committed Jun 28, 2023
1 parent 0cb90e8 commit 83eba8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/toolbox/setup/esp32.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default async function(): Promise<void> {
const OS = platformType().toLowerCase()
const isWindows = OS === "windows_nt"
const ESP_IDF_REPO = 'https://github.com/espressif/esp-idf.git'
const ESP_BRANCH = 'v4.4.2'
const ESP_BRANCH = 'v4.4.3'
const ESP32_DIR = filesystem.resolve(INSTALL_DIR, 'esp32')
const IDF_PATH = filesystem.resolve(ESP32_DIR, 'esp-idf')

Expand Down
2 changes: 1 addition & 1 deletion src/toolbox/update/esp32.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { sourceEnvironment } from '../system/exec'

export default async function(): Promise<void> {
const OS = platformType().toLowerCase()
const ESP_BRANCH = 'v4.4.2'
const ESP_BRANCH = 'v4.4.3'
const ESP32_DIR = filesystem.resolve(INSTALL_DIR, 'esp32')
const IDF_PATH = filesystem.resolve(ESP32_DIR, 'esp-idf')

Expand Down

0 comments on commit 83eba8a

Please sign in to comment.