[SC64] v2.19.0 release

This commit is contained in:
Mateusz Faderewski 2024-08-17 18:23:57 +02:00
parent a5284aa770
commit 04cecb1955
4 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,8 @@
#define VERSION_MAJOR (2)
#define VERSION_MINOR (18)
#define VERSION_REVISION (1)
#define VERSION_MINOR (19)
#define VERSION_REVISION (0)
void version_firmware (uint32_t *version, uint32_t *revision) {

View File

@ -1221,7 +1221,7 @@ dependencies = [
[[package]]
name = "sc64deployer"
version = "2.18.1"
version = "2.19.0"
dependencies = [
"chrono",
"clap",

View File

@ -1,6 +1,6 @@
[package]
name = "sc64deployer"
version = "2.18.1"
version = "2.19.0"
edition = "2021"
authors = ["Polprzewodnikowy"]
description = "SummerCart64 loader and control software"

View File

@ -66,7 +66,7 @@ pub struct DeviceState {
const SC64_V2_IDENTIFIER: &[u8; 4] = b"SCv2";
const SUPPORTED_MAJOR_VERSION: u16 = 2;
const SUPPORTED_MINOR_VERSION: u16 = 18;
const SUPPORTED_MINOR_VERSION: u16 = 19;
const SDRAM_ADDRESS: u32 = 0x0000_0000;
const SDRAM_LENGTH: usize = 64 * 1024 * 1024;