From 970a7ef63f49564d4b78e0ab772b0482fce1391d Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 13 Oct 2021 20:50:41 +0200 Subject: [PATCH] Change filesystem boundary to 0x98_800 and release v0.3.0 --- runners/lpc55/Cargo.lock | 2 +- runners/lpc55/Cargo.toml | 2 +- runners/lpc55/build.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/runners/lpc55/Cargo.lock b/runners/lpc55/Cargo.lock index 8504c49e..921b29a4 100644 --- a/runners/lpc55/Cargo.lock +++ b/runners/lpc55/Cargo.lock @@ -1221,7 +1221,7 @@ dependencies = [ [[package]] name = "runner" -version = "0.2.1" +version = "0.3.0" dependencies = [ "admin-app", "apdu-dispatch", diff --git a/runners/lpc55/Cargo.toml b/runners/lpc55/Cargo.toml index 9f63c37c..056b1a42 100644 --- a/runners/lpc55/Cargo.toml +++ b/runners/lpc55/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "runner" -version = "0.2.1" +version = "0.3.0" authors = ["Nicolas Stalder ", "Conor Patrick "] edition = "2018" resolver = "2" diff --git a/runners/lpc55/build.rs b/runners/lpc55/build.rs index 29dfc62b..f3246571 100644 --- a/runners/lpc55/build.rs +++ b/runners/lpc55/build.rs @@ -93,7 +93,7 @@ fn main() -> Result<(), Box> { // let config: Config = toml::from_str(&config)?; // Hardcode until cargo issue gets fixed. - let config = Config {parameters: Parameters{filesystem_boundary: 0x8_0000}}; + let config = Config {parameters: Parameters{filesystem_boundary: 0x98_800}}; let linker_script_file = env::var("CARGO_MANIFEST_DIR").expect("No out dir");