1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

F7 enable FPU

This commit is contained in:
Sami Korhonen 2016-08-27 16:33:08 +03:00
parent fe96320bd0
commit f2e4f9874f

View file

@ -105,6 +105,12 @@ LoopFillZerobss:
cmp r2, r3
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.*/
bl SystemInit
/* Call the application's entry point.*/