From 7ba00b01577da988565094937e00f70b78e39ecc Mon Sep 17 00:00:00 2001 From: Daniel Jackson Date: Mon, 27 Sep 2021 02:42:53 +0100 Subject: Fix the size of the filesystem. Correct typo: 0x400000 - 0x0B4000 = 0x34C000. --- src/components/fs/FS.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/fs/FS.h b/src/components/fs/FS.h index 1f2eb7e0..75ba16c8 100644 --- a/src/components/fs/FS.h +++ b/src/components/fs/FS.h @@ -53,7 +53,7 @@ namespace Pinetime { * */ static constexpr size_t startAddress = 0x0B4000; - static constexpr size_t size = 0x3C0000; + static constexpr size_t size = 0x34C000; static constexpr size_t blockSize = 4096; bool resourcesValid = false; -- cgit v1.2.3