-
-
Notifications
You must be signed in to change notification settings - Fork 19.2k
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
STM32F1 HAL: Time to add it to CI? #10998
Comments
For stm32 it should be static __inline__ void __set_primask(uint32_t setval) \
{ __asm__ volatile ("MSR PRIMASK, %[value]\n\t""dmb\n\t""dsb\n\t""isb\n\t"::[value]"r"(setval):); \
__asm__ volatile ("" ::: "memory");}
static __inline__ uint32_t __iSeiRetVal(void) \
{ __asm__ volatile ("CPSIE i\n\t""dmb\n\t""dsb\n\t""isb\n\t"); \
__asm__ volatile ("" ::: "memory"); return 1; }
static __inline__ uint32_t __iCliRetVal(void) \
{ __asm__ volatile ("CPSID i\n\t""dmb\n\t""dsb\n\t""isb\n\t"); \
__asm__ volatile ("" ::: "memory"); return 1; } this functions |
Merged
thinkyhead
pushed a commit
to alexxy/Marlin
that referenced
this issue
Jun 12, 2018
Fix build after d3c0241. Issue MarlinFirmware#10998 Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi!
I'm trying to build STM32F1 with default config stm32f103ret6/Configuration.h with platfromio. And it fails to build
Build Log
From where comes
__enable_irq
/__disable_irq
functions?PS is it possible to add it to travis CI as a generic check?
The text was updated successfully, but these errors were encountered: