diff --git a/sw/controller/src/version.c b/sw/controller/src/version.c index 71fba2f..93dcb45 100644 --- a/sw/controller/src/version.c +++ b/sw/controller/src/version.c @@ -2,7 +2,7 @@ #define VERSION_MAJOR (2) -#define VERSION_MINOR (17) +#define VERSION_MINOR (18) #define VERSION_REVISION (0) diff --git a/sw/deployer/Cargo.lock b/sw/deployer/Cargo.lock index 71f1bc6..0de6a3b 100644 --- a/sw/deployer/Cargo.lock +++ b/sw/deployer/Cargo.lock @@ -1013,7 +1013,7 @@ dependencies = [ [[package]] name = "sc64deployer" -version = "2.17.0" +version = "2.18.0" dependencies = [ "chrono", "clap", diff --git a/sw/deployer/Cargo.toml b/sw/deployer/Cargo.toml index 33d5614..93c77e2 100644 --- a/sw/deployer/Cargo.toml +++ b/sw/deployer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sc64deployer" -version = "2.17.0" +version = "2.18.0" edition = "2021" authors = ["Polprzewodnikowy"] description = "SummerCart64 loader and control software" diff --git a/sw/deployer/src/sc64/mod.rs b/sw/deployer/src/sc64/mod.rs index 92e31af..5f0e8eb 100644 --- a/sw/deployer/src/sc64/mod.rs +++ b/sw/deployer/src/sc64/mod.rs @@ -61,7 +61,7 @@ pub struct DeviceState { const SC64_V2_IDENTIFIER: &[u8; 4] = b"SCv2"; const SUPPORTED_MAJOR_VERSION: u16 = 2; -const SUPPORTED_MINOR_VERSION: u16 = 17; +const SUPPORTED_MINOR_VERSION: u16 = 18; const SDRAM_ADDRESS: u32 = 0x0000_0000; const SDRAM_LENGTH: usize = 64 * 1024 * 1024;