Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Zephyr 4.0.0 #141

Merged
merged 1 commit into from
Dec 17, 2024
Merged
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
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ manifest:
projects:
- name: zephyr
remote: zephyrproject-rtos
revision: v3.7.0
revision: v4.0.0
import: true
1 change: 1 addition & 0 deletions zephyr/drivers/serial/uart_bitbang.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <zephyr/arch/cpu.h>
#include <zephyr/device.h>
#include <zephyr/drivers/uart.h>
#include <soc.h>

#define DT_DRV_COMPAT olofk_serial

Expand Down
12 changes: 12 additions & 0 deletions zephyr/soc/riscv/servant/Kconfig.defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,16 @@ config SERV_TIMER
bool
default y

config ARCH_HAS_CUSTOM_CPU_IDLE
bool
default y

config ARCH_HAS_CUSTOM_CPU_ATOMIC_IDLE
bool
default y

config RISCV_SOC_EXCEPTION_FROM_IRQ
bool
default y

endif # SOC_RISCV32_SERVANT
Loading