Skip to content

Commit

Permalink
Update memory.h
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Nov 16, 2020
1 parent 187d550 commit 705cc6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eez/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static const uint32_t MEMORY_SIZE = 64 * 1024 * 1024;

static uint8_t * const DECOMPRESSED_ASSETS_START_ADDRESS = MEMORY_BEGIN;
#if defined(EEZ_PLATFORM_STM32)
static const uint32_t DECOMPRESSED_ASSETS_SIZE = (3 * 512 - 20) * 1024;
static const uint32_t DECOMPRESSED_ASSETS_SIZE = (3 * 512 - 32) * 1024;
#endif
#if defined(EEZ_PLATFORM_SIMULATOR)
static const uint32_t DECOMPRESSED_ASSETS_SIZE = 8 * 1024 * 1024;
Expand All @@ -55,7 +55,7 @@ static const uint32_t FILE_VIEW_BUFFER_SIZE = 3 * 512 * 1024;
#endif

static uint8_t * const EXTERNAL_ASSETS_BUFFER = FILE_VIEW_BUFFER + FILE_VIEW_BUFFER_SIZE;
static const uint32_t EXTERNAL_ASSETS_BUFFER_SIZE = 1024 * 1024;
static const uint32_t EXTERNAL_ASSETS_BUFFER_SIZE = 768 * 1024;

static uint8_t * const MP_BUFFER = EXTERNAL_ASSETS_BUFFER + EXTERNAL_ASSETS_BUFFER_SIZE;
static const uint32_t MP_BUFFER_SIZE = 512 * 1024;
Expand Down

0 comments on commit 705cc6d

Please sign in to comment.