Testing for config.

core0-buffer
pca006132 2020-06-18 11:33:52 +08:00
parent a55a6291a4
commit f43ad05be5
1 changed files with 12 additions and 3 deletions

View File

@ -46,9 +46,18 @@ pub fn main_core0() {
ram::init_alloc_linker();
match config::read_str("foo") {
Ok(val) => info!("read: {}", val),
Err(error) => info!("failed to read config: {}", error),
let mut cfg = config::Config::new().unwrap();
match cfg.read_str("FOO") {
Ok(val) => info!("FOO = {}", val),
Err(error) => info!("failed to read config FOO: {}", error),
}
match cfg.read_str("BAR") {
Ok(val) => info!("BAR = {}", val),
Err(error) => info!("failed to read config BAR: {}", error),
}
match cfg.read_str("FOOBAR") {
Ok(val) => info!("read FOOBAR = {}", val),
Err(error) => info!("failed to read config FOOBAR: {}", error),
}
if devc::DevC::new().is_done() {