mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 09:45:37 +03:00
F7 enable FPU
This commit is contained in:
parent
fe96320bd0
commit
f2e4f9874f
1 changed files with 6 additions and 0 deletions
|
@ -105,6 +105,12 @@ LoopFillZerobss:
|
||||||
cmp r2, r3
|
cmp r2, r3
|
||||||
bcc FillZerobss
|
bcc FillZerobss
|
||||||
|
|
||||||
|
/*FPU settings*/
|
||||||
|
ldr r0, =0xE000ED88 /* Enable CP10,CP11 */
|
||||||
|
ldr r1,[r0]
|
||||||
|
orr r1,r1,#(0xF << 20)
|
||||||
|
str r1,[r0]
|
||||||
|
|
||||||
/* Call the clock system initialization function.*/
|
/* Call the clock system initialization function.*/
|
||||||
bl SystemInit
|
bl SystemInit
|
||||||
/* Call the application's entry point.*/
|
/* Call the application's entry point.*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue