Skip to content

Commit

Permalink
espressif: Update external libraries to fix GPIO interrupt bug
Browse files Browse the repository at this point in the history
This commit updates the HAL version used by NuttX to fix the bug
reported in apache#13303
  • Loading branch information
tmedicci committed Sep 10, 2024
1 parent 00c4da7 commit 3a12d75
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion arch/risc-v/src/common/espressif/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ endif

ESP_HAL_3RDPARTY_REPO = esp-hal-3rdparty
ifndef ESP_HAL_3RDPARTY_VERSION
ESP_HAL_3RDPARTY_VERSION = 51770f0c97201401b535d833a30c5c0cb7df4edd
ESP_HAL_3RDPARTY_VERSION = 20690e67695f0a8170a19ec99e2e9a13b620e94d
endif

ifndef ESP_HAL_3RDPARTY_URL
Expand Down
3 changes: 1 addition & 2 deletions arch/risc-v/src/common/espressif/esp_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ static volatile uint8_t g_irq_map[NR_IRQS];
* devices.
*/

static uint32_t g_cpuint_freelist = ESP_CPUINT_PERIPHSET & \
~ESP_WIRELESS_RESERVE_INT;
static uint32_t g_cpuint_freelist = ESP_CPUINT_PERIPHSET;

/* This bitmask has an 1 if the int should be disabled
* when the flash is disabled.
Expand Down
2 changes: 1 addition & 1 deletion arch/xtensa/src/esp32/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ endif

ESP_HAL_3RDPARTY_REPO = esp-hal-3rdparty
ifndef ESP_HAL_3RDPARTY_VERSION
ESP_HAL_3RDPARTY_VERSION = 51770f0c97201401b535d833a30c5c0cb7df4edd
ESP_HAL_3RDPARTY_VERSION = 20690e67695f0a8170a19ec99e2e9a13b620e94d
endif

ifndef ESP_HAL_3RDPARTY_URL
Expand Down
2 changes: 1 addition & 1 deletion arch/xtensa/src/esp32s2/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ endif

ESP_HAL_3RDPARTY_REPO = esp-hal-3rdparty
ifndef ESP_HAL_3RDPARTY_VERSION
ESP_HAL_3RDPARTY_VERSION = 7857ae934736b2de2a387d90bd491fde2b3a5377
ESP_HAL_3RDPARTY_VERSION = 20690e67695f0a8170a19ec99e2e9a13b620e94d
endif

ifndef ESP_HAL_3RDPARTY_URL
Expand Down
2 changes: 1 addition & 1 deletion arch/xtensa/src/esp32s3/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ endif

ESP_HAL_3RDPARTY_REPO = esp-hal-3rdparty
ifndef ESP_HAL_3RDPARTY_VERSION
ESP_HAL_3RDPARTY_VERSION = 51770f0c97201401b535d833a30c5c0cb7df4edd
ESP_HAL_3RDPARTY_VERSION = 20690e67695f0a8170a19ec99e2e9a13b620e94d
endif

ifndef ESP_HAL_3RDPARTY_URL
Expand Down

0 comments on commit 3a12d75

Please sign in to comment.