Merge pull request #2577 from yangjie11/stm32dev

[src/components.c]remove the repetitive rt_hw_interrupt_disable() fun…
This commit is contained in:
Bernard Xiong 2019-04-15 23:01:33 +08:00 committed by GitHub
commit c8870b4268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -138,7 +138,6 @@ extern int $Super$$main(void);
/* re-define main function */
int $Sub$$main(void)
{
rt_hw_interrupt_disable();
rtthread_startup();
return 0;
}
@ -150,7 +149,6 @@ int __low_level_init(void)
{
// call IAR table copy function.
__iar_data_init3();
rt_hw_interrupt_disable();
rtthread_startup();
return 0;
}
@ -159,7 +157,6 @@ extern int main(void);
/* Add -eentry to arm-none-eabi-gcc argument */
int entry(void)
{
rt_hw_interrupt_disable();
rtthread_startup();
return 0;
}