STM32: fix F410RB vectors size

On F410RB, the size reserved to vectors with ARM toolchains was not properly
defined,which was not the case for other toolchains.

This would cause few tests to fail like EXAMPLE_1 with below error:

HOST: Unknown property: mbed assertation failed: _ptr == (T *)&_data, file: C:/github/mbed/BUILD/mbed/platform/SingletonPtr.h, line 91
pull/4935/head
Laurent MEUNIER 2017-08-18 11:41:42 +02:00
parent 7653f65434
commit 95fc6d0bad
2 changed files with 4 additions and 4 deletions

View File

@ -36,8 +36,8 @@ LR_IROM1 0x08000000 0x20000 { ; load region size_region
.ANY (+RO)
}
; Total: 112 vectors = 448 bytes (0x1C0) to be reserved in RAM
RW_IRAM1 (0x20000000+0x1C0) (0x8000-0x1C0) { ; RW data
; Total: 114 vectors = 456 bytes (0x1C8) to be reserved in RAM
RW_IRAM1 (0x20000000+0x1C8) (0x8000-0x1C8) { ; RW data
.ANY (+RW +ZI)
}

View File

@ -36,8 +36,8 @@ LR_IROM1 0x08000000 0x20000 { ; load region size_region
.ANY (+RO)
}
; Total: 112 vectors = 448 bytes (0x1C0) to be reserved in RAM
RW_IRAM1 (0x20000000+0x1C0) (0x8000-0x1C0) { ; RW data
; Total: 114 vectors = 456 bytes (0x1C8) to be reserved in RAM
RW_IRAM1 (0x20000000+0x1C8) (0x8000-0x1C8) { ; RW data
.ANY (+RW +ZI)
}