Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Fw::Success Drv2605Manager ::deinitializeDevice() {
}

bool Drv2605Manager ::loadSwitchReady() {
return this->m_load_switch_state == Fw::On::ON && this->getTime() >= this->m_load_switch_on_timeout;
return this->m_load_switch_state == Fw::On::ON;
}

} // namespace Drv
2 changes: 1 addition & 1 deletion lib/zephyr-workspace/zephyr
Submodule zephyr updated 19717 files
21 changes: 10 additions & 11 deletions west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ manifest:
# Zephyr RTOS core
- name: zephyr
repo-path: zephyr
revision: v4.3.0
revision: v4.4.0-rc1
path: lib/zephyr-workspace/zephyr
west-commands: scripts/west-commands.yml
import:
Expand All @@ -28,7 +28,6 @@ manifest:
- hal_rpi_pico # Raspberry Pi Pico HAL (REQUIRED for RP2040/RP2350)
- picolibc # C library
- mbedtls # Crypto library
- tinycrypt # Lightweight crypto library
- mcuboot # Bootloader support
- fatfs # FatFS (file system) support
- hal_st # Required for certain sensors
Expand All @@ -46,42 +45,42 @@ manifest:

- name: cmsis_6
repo-path: CMSIS_6
revision: 06d952b6713a2ca41c9224a62075e4059402a151
revision: 30a859f44ef8ab4dc8f84b03ed586fd16ccf9d74
path: lib/zephyr-workspace/modules/hal/cmsis_6
groups:
- hal

- name: hal_rpi_pico
path: lib/zephyr-workspace/modules/hal/rpi_pico
revision: 09e957522da60581cf7958b31f8e625d969c69a5
revision: 562b41e10a1d8b1a761b253b107c5c6a84cf4535
groups:
- hal

- name: hal_st
revision: 9f81b4427e955885398805b7bca0da3a8cd9109c
revision: 7a792882847223c72944791e0c48eed6101e6569
path: lib/zephyr-workspace/modules/hal/st
groups:
- hal

- name: picolibc
path: lib/zephyr-workspace/modules/lib/picolibc
revision: 560946f26db075c296beea5b39d99e6de43c9010
revision: 01254932e8e81085817ed61fd858648584ffe37c

# Crypto libraries (commonly used)
- name: mbedtls
revision: 85440ef5fffa95d0e9971e9163719189cf34d979
revision: 26158d1c012477e77765d138b26a791db917c881
path: lib/zephyr-workspace/modules/crypto/mbedtls
groups:
- crypto

- name: tinycrypt
revision: 1012a3ebee18c15ede5efc8332ee2fc37817670f
path: lib/zephyr-workspace/modules/crypto/tinycrypt
- name: tf-psa-crypto
revision: 6820f1dadc67c289d2dc63aec495519c9d589d8e
path: lib/zephyr-workspace/modules/crypto/mbedtls/tf-psa-crypto
groups:
- crypto

- name: mcuboot
revision: 96576b341ee19f1c3af6622256b0d4f3d408e1e3
revision: cf5810201c84d6e266aeda2abdab80854066ac08
path: lib/zephyr-workspace/bootloader/mcuboot

- name: fatfs
Expand Down
Loading