From 188764693e120c339ba1859034b61329e069b9a8 Mon Sep 17 00:00:00 2001 From: whitequark Date: Tue, 26 Dec 2017 03:34:16 +0000 Subject: [PATCH] runtime: we're growing, put storage at 1M instead of 512K. --- artiq/firmware/runtime/runtime.ld | 2 +- artiq/frontend/artiq_flash.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/firmware/runtime/runtime.ld b/artiq/firmware/runtime/runtime.ld index 54a964836..7346d6188 100644 --- a/artiq/firmware/runtime/runtime.ld +++ b/artiq/firmware/runtime/runtime.ld @@ -70,7 +70,7 @@ SECTIONS { /* Keep in sync with artiq_flash.py */ _fstorage = .; - . = _ftext + 0x80000; + . = _ftext + 0x100000; . += /*SPIFLASH_SECTOR_SIZE*/ 0x10000; _estorage = .; } > runtime diff --git a/artiq/frontend/artiq_flash.py b/artiq/frontend/artiq_flash.py index beb408e0c..4e7e85eb3 100755 --- a/artiq/frontend/artiq_flash.py +++ b/artiq/frontend/artiq_flash.py @@ -188,7 +188,7 @@ def main(): parser = get_argparser() opts = parser.parse_args() - storage_at = 0x80000 # Keep in sync with runtime.ld + storage_at = 0x100000 # Keep in sync with runtime.ld config = { "kc705": { "programmer_factory": partial(ProgrammerJtagSpi7, "kc705"),