-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make STM32F4 vectors relocate properly #93
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
emilmont
added a commit
that referenced
this pull request
Oct 25, 2013
Make STM32F4 vectors relocate properly
deepakvenugopal
added a commit
to deepakvenugopal/mbed-os
that referenced
this pull request
Mar 2, 2018
… from f6281ed..f40072f f40072f Merge pull request ARMmbed#95 from ARMmbed/revert_interface_id_check 4b27d02 Revert "Add check for interface when receiving CoAP request (ARMmbed#92)" 6fd5003 Adjust request message validity lifetime (ARMmbed#93) git-subtree-dir: features/nanostack/FEATURE_NANOSTACK/coap-service git-subtree-split: f40072f
yossi2le
pushed a commit
to yossi2le/mbed-os
that referenced
this pull request
Jan 2, 2019
* Enable restrict keyword for IAR * Enable build test for nucleo and odin and IAR
lrusinowicz
pushed a commit
to lrusinowicz/mbed-os
that referenced
this pull request
Feb 5, 2019
Updating mbed-os to mbed-os-5.6.4
linlingao
added a commit
to linlingao/mbed-os
that referenced
this pull request
Jul 12, 2019
Increase greentea timeout for two tests. They were too small
pan-
added a commit
to pan-/mbed
that referenced
this pull request
May 29, 2020
Updating mbed-os to mbed-os-5.5.2
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Dec 14, 2020
…7b93ec6..ad7631083a ad7631083a Merge pull request ARMmbed#96 from PelionIoT/heap_lite_stats 18b742b2c7 Heap stat's enabled allways by default. 9b4cbaf101 Added extended block list to dynamic memory tracker (ARMmbed#95) 8ff6d31abb Added dynamic memory tracker and hooks to dynmem library (ARMmbed#93) cf2b133082 Merge pull request ARMmbed#92 from LDong-Arm/add_present_flag 9eb6f2dde7 Add config to generate macro MBED_CONF_NANOSTACK_LIBSERVICE_PRESENT git-subtree-dir: features/frameworks/nanostack-libservice git-subtree-split: ad7631083ad69efa3a4335dd586934d25ab70b27
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Jan 19, 2021
…67d7b93ec6..a526cc3f41 a526cc3f41 Merge pull request ARMmbed#97 from PelionIoT/sync_from_mbed_os 2f82569918 Add license notice to Arm copyrighted source files ad7631083a Merge pull request ARMmbed#96 from PelionIoT/heap_lite_stats 18b742b2c7 Heap stat's enabled allways by default. 9b4cbaf101 Added extended block list to dynamic memory tracker (ARMmbed#95) 8ff6d31abb Added dynamic memory tracker and hooks to dynmem library (ARMmbed#93) cf2b133082 Merge pull request ARMmbed#92 from LDong-Arm/add_present_flag 9eb6f2dde7 Add config to generate macro MBED_CONF_NANOSTACK_LIBSERVICE_PRESENT git-subtree-dir: connectivity/libraries/nanostack-libservice git-subtree-split: a526cc3f41bfd0ec6a78e6998b8f8dcc1bd2afc9
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Jan 19, 2021
…7b93ec6..a526cc3f41 a526cc3f41 Merge pull request ARMmbed#97 from PelionIoT/sync_from_mbed_os 2f82569918 Add license notice to Arm copyrighted source files ad7631083a Merge pull request ARMmbed#96 from PelionIoT/heap_lite_stats 18b742b2c7 Heap stat's enabled allways by default. 9b4cbaf101 Added extended block list to dynamic memory tracker (ARMmbed#95) 8ff6d31abb Added dynamic memory tracker and hooks to dynmem library (ARMmbed#93) cf2b133082 Merge pull request ARMmbed#92 from LDong-Arm/add_present_flag 9eb6f2dde7 Add config to generate macro MBED_CONF_NANOSTACK_LIBSERVICE_PRESENT git-subtree-dir: features/frameworks/nanostack-libservice git-subtree-split: a526cc3f41bfd0ec6a78e6998b8f8dcc1bd2afc9
artokin
pushed a commit
to artokin/mbed-os
that referenced
this pull request
Jan 21, 2021
…7b93ec6..a526cc3f41 a526cc3f41 Merge pull request ARMmbed#97 from PelionIoT/sync_from_mbed_os 2f82569918 Add license notice to Arm copyrighted source files ad7631083a Merge pull request ARMmbed#96 from PelionIoT/heap_lite_stats 18b742b2c7 Heap stat's enabled allways by default. 9b4cbaf101 Added extended block list to dynamic memory tracker (ARMmbed#95) 8ff6d31abb Added dynamic memory tracker and hooks to dynmem library (ARMmbed#93) cf2b133082 Merge pull request ARMmbed#92 from LDong-Arm/add_present_flag 9eb6f2dde7 Add config to generate macro MBED_CONF_NANOSTACK_LIBSERVICE_PRESENT git-subtree-dir: features/frameworks/nanostack-libservice git-subtree-split: a526cc3f41bfd0ec6a78e6998b8f8dcc1bd2afc9
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This fixes a regression introduced by 14409cd. The old vector table is not located as 0x0, so the table was not relocated when NVIC_SetVector was called. I've used the technique for relocation from the LPC43XX code, as the STM32F4 can also store its vectors in one of a couple of locations.