From 9ed68d129f14f9163792a9d6ede13a8adcc17e9e Mon Sep 17 00:00:00 2001 From: msloniewski Date: Mon, 30 Dec 2019 22:36:31 +0100 Subject: [PATCH] platforms/de10lite: add additional configuration Use single image with memory initialization to make more space for SoC ROM sector. --- litex_boards/community/platforms/de10lite.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litex_boards/community/platforms/de10lite.py b/litex_boards/community/platforms/de10lite.py index c4b3622..4bd6190 100644 --- a/litex_boards/community/platforms/de10lite.py +++ b/litex_boards/community/platforms/de10lite.py @@ -101,6 +101,9 @@ class Platform(AlteraPlatform): def __init__(self): AlteraPlatform.__init__(self, "10M50DAF484C7G", _io) + self.add_platform_command("set_global_assignment -name FAMILY \"MAX 10\"") + self.add_platform_command("set_global_assignment -name ENABLE_CONFIGURATION_PINS OFF") + self.add_platform_command("set_global_assignment -name INTERNAL_FLASH_UPDATE_MODE \"SINGLE IMAGE WITH ERAM\"") def create_programmer(self): return USBBlaster()