platforms/de10lite: add additional configuration

Use single image with memory initialization
to make more space for SoC ROM sector.
This commit is contained in:
msloniewski 2019-12-30 22:36:31 +01:00
parent 28753a2c04
commit 9ed68d129f
1 changed files with 3 additions and 0 deletions

View File

@ -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()