changing linker memory locations for stm32f103c8 (#65)

wch-ch32v003
Ethan Frei 2 years ago committed by GitHub
parent 6bc3fc094b
commit e60d59ce49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -35,8 +35,8 @@ pub const stm32f103x8 = Chip{
.path = root_path ++ "chips/stm32f103/stm32f103.zig",
.cpu = cpus.cortex_m3,
.memory_regions = &.{
MemoryRegion{ .offset = 0x00000000, .length = 64 * 1024, .kind = .flash },
MemoryRegion{ .offset = 0x10000000, .length = 20 * 1024, .kind = .ram },
MemoryRegion{ .offset = 0x08000000, .length = 64 * 1024, .kind = .flash },
MemoryRegion{ .offset = 0x20000000, .length = 20 * 1024, .kind = .ram },
},
};

Loading…
Cancel
Save