From 63a37513540f9f2f01e3e18f617169184205dfb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=98=E9=91=AB=E7=91=B6?= Date: Thu, 26 Oct 2023 15:20:30 +0800 Subject: [PATCH] =?UTF-8?q?examples:=20=E4=BF=AE=E6=AD=A3bl808-dsp?= =?UTF-8?q?=E5=92=8Cbl808-mcu=20feature=E7=9A=84=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 解决项目无法编译的问题 Signed-off-by: 付鑫瑶 --- examples/gpio-demo/Cargo.toml | 2 +- examples/i2c-demo/Cargo.toml | 2 +- examples/jtag-demo/Cargo.toml | 2 +- examples/lz4d-demo/Cargo.toml | 2 +- examples/multicore-demo/dsp/Cargo.toml | 2 +- examples/multicore-demo/mcu/Cargo.toml | 2 +- examples/pwm-demo/Cargo.toml | 2 +- examples/spi-demo/Cargo.toml | 2 +- examples/uart-demo/Cargo.toml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/gpio-demo/Cargo.toml b/examples/gpio-demo/Cargo.toml index a92b871..c3e9cce 100644 --- a/examples/gpio-demo/Cargo.toml +++ b/examples/gpio-demo/Cargo.toml @@ -17,4 +17,4 @@ riscv = "0.10.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] diff --git a/examples/i2c-demo/Cargo.toml b/examples/i2c-demo/Cargo.toml index 52b8003..c33d60d 100644 --- a/examples/i2c-demo/Cargo.toml +++ b/examples/i2c-demo/Cargo.toml @@ -17,4 +17,4 @@ riscv = "0.10.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] diff --git a/examples/jtag-demo/Cargo.toml b/examples/jtag-demo/Cargo.toml index 3f0a4c1..d816789 100644 --- a/examples/jtag-demo/Cargo.toml +++ b/examples/jtag-demo/Cargo.toml @@ -16,4 +16,4 @@ riscv = "0.10.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] diff --git a/examples/lz4d-demo/Cargo.toml b/examples/lz4d-demo/Cargo.toml index fedb440..973d0f0 100644 --- a/examples/lz4d-demo/Cargo.toml +++ b/examples/lz4d-demo/Cargo.toml @@ -18,4 +18,4 @@ riscv = "0.10.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] diff --git a/examples/multicore-demo/dsp/Cargo.toml b/examples/multicore-demo/dsp/Cargo.toml index 8e924ed..f328e32 100644 --- a/examples/multicore-demo/dsp/Cargo.toml +++ b/examples/multicore-demo/dsp/Cargo.toml @@ -16,4 +16,4 @@ riscv = "0.10.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] diff --git a/examples/multicore-demo/mcu/Cargo.toml b/examples/multicore-demo/mcu/Cargo.toml index fb3181b..57af60f 100644 --- a/examples/multicore-demo/mcu/Cargo.toml +++ b/examples/multicore-demo/mcu/Cargo.toml @@ -15,4 +15,4 @@ riscv = "0.10.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-m0"] +features = ["bl808-mcu"] diff --git a/examples/pwm-demo/Cargo.toml b/examples/pwm-demo/Cargo.toml index 281c75d..65c0be3 100644 --- a/examples/pwm-demo/Cargo.toml +++ b/examples/pwm-demo/Cargo.toml @@ -17,4 +17,4 @@ riscv = "0.10.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] diff --git a/examples/spi-demo/Cargo.toml b/examples/spi-demo/Cargo.toml index 4c85797..bbf8488 100644 --- a/examples/spi-demo/Cargo.toml +++ b/examples/spi-demo/Cargo.toml @@ -21,4 +21,4 @@ embedded-graphics = "0.8.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] diff --git a/examples/uart-demo/Cargo.toml b/examples/uart-demo/Cargo.toml index cc0915a..c04c0fb 100644 --- a/examples/uart-demo/Cargo.toml +++ b/examples/uart-demo/Cargo.toml @@ -16,5 +16,5 @@ embedded-time = "0.12.1" git = "https://gitee.com/rustsbi/bl-rom-rt" branch = "main" default-features = false -features = ["bl808-d0"] +features = ["bl808-dsp"] \ No newline at end of file -- Gitee