Skip to content

Commit 4b1fca0

Browse files
committed
Add Chunk2 and Chunk4 support.
Even using the interpolator, I can't make 640 chunky4 pixels fit in the time available - it visibly glitches.
1 parent 1f2e0aa commit 4b1fca0

File tree

2 files changed

+318
-71
lines changed

2 files changed

+318
-71
lines changed

memory.x

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ MEMORY {
2525
/*
2626
* This is the bottom of the four striped banks of SRAM in the RP2040.
2727
*/
28-
RAM_OS : ORIGIN = 0x20000000, LENGTH = 0x42000 - 0x9090
28+
RAM_OS : ORIGIN = 0x20000000, LENGTH = 0x42000 - 0x9300
2929
/*
3030
* This is the top of the four striped banks of SRAM in the RP2040, plus
3131
* SRAM_BANK4 and SRAM_BANK5.
3232
*
3333
* This is carefully calculated to give us 8 KiB of stack space and ensure
3434
* the defmt buffer doesn't span across SRAM_BANK3 and SRAM_BANK4.
3535
*
36-
* 0x9090 should be the (size of .data + size of .bss + size of .uninit +
36+
* 0x9300 should be the (size of .data + size of .bss + size of .uninit +
3737
* 0x2000 for the stack).
3838
*/
39-
RAM : ORIGIN = 0x20042000 - 0x9090, LENGTH = 0x9090
39+
RAM : ORIGIN = 0x20042000 - 0x9300, LENGTH = 0x9300
4040
}
4141

4242
/*

0 commit comments

Comments
 (0)