File tree 3 files changed +11
-8
lines changed
3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
1
Release notes
2
2
=============
3
3
4
- 1.0
5
- ---
4
+ 1.0 (unreleased)
5
+ ----------------
6
6
7
- * First release
8
- * Experiments (your code) should use ``from artiq.experiment import * ``
9
- (and not ``from artiq import * `` as previously)
7
+ * First release
8
+ * Experiments (your code) should use ``from artiq.experiment import * ``
9
+ (and not ``from artiq import * `` as previously)
10
+ * Core device flash storage has moved due to increased runtime size.
11
+ This requires reflashing the runtime and the flash storage filesystem image
12
+ or erase and rewrite its entries.
Original file line number Diff line number Diff line change @@ -58,15 +58,15 @@ def main():
58
58
"bitstream" : 0x000000 ,
59
59
"bios" : 0xaf0000 ,
60
60
"runtime" : 0xb00000 ,
61
- "storage" : 0xb40000 ,
61
+ "storage" : 0xb80000 ,
62
62
},
63
63
"pipistrello" : {
64
64
"chip" : "xc6slx45" ,
65
65
"start" : "xc6s_program xc6s.tap" ,
66
66
"bitstream" : 0x000000 ,
67
67
"bios" : 0x170000 ,
68
68
"runtime" : 0x180000 ,
69
- "storage" : 0x1c0000 ,
69
+ "storage" : 0x200000 ,
70
70
},
71
71
}[opts .target ]
72
72
Original file line number Diff line number Diff line change 14
14
15
15
#if (defined CSR_SPIFLASH_BASE && defined CONFIG_SPIFLASH_PAGE_SIZE )
16
16
17
- #define STORAGE_ADDRESS ((char *)(FLASH_BOOT_ADDRESS + 256*1024 ))
17
+ #define STORAGE_ADDRESS ((char *)(FLASH_BOOT_ADDRESS + 0x80000 /* max runtime size */ ))
18
18
#define STORAGE_SIZE CONFIG_SPIFLASH_SECTOR_SIZE
19
19
#define END_MARKER (0xFFFFFFFF)
20
20
You can’t perform that action at this time.
0 commit comments