-
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
Add uVision4 exporters for DISCO-{F051R8, F100RB, F303VC, F407VG} #1522
Conversation
(1) Add above exporters. (2) Modified only comments in "cmsis_nvic.h" files.
@@ -873,6 +873,7 @@ def __init__(self): | |||
self.extra_labels = ['STM', 'STM32F4', 'STM32F407', 'STM32F407VG'] | |||
self.supported_toolchains = ["ARM", "uARM", "GCC_ARM"] | |||
self.progen_target ='disco-f407vg' | |||
self.default_toolchain = "uARM" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are you setting uARM for 407?
@dinau This PR is looking fine. Just one thing, uARM for disco f407 does not make sense and should be changed to full ARM std library. Please have a look |
Hello 0xc0170, dinau |
Hi, Regards, |
#define NVIC_NUM_VECTORS (16 + 100) | ||
// MCU Peripherals: 61 vectors (= 244 bytes from 0x40 to 0x134) | ||
// Total: 308 bytes to be reserved in RAM (see scatter file) | ||
#define NVIC_NUM_VECTORS (16 + 61) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should have been separate PR (at least own commit)
Add uVision4 exporters for DISCO-{F051R8, F100RB, F303VC, F407VG}
(1) Add above exporters.
(2) Modified only comments in "cmsis_nvic.h" files.