cancel
Showing results for 
Search instead for 
Did you mean: 

No .ioc file generated; FPU not initialised

Jad
Senior
#include <stdint.h>

#if !defined(__SOFT_FP__) && defined(__ARM_FP)
  #warning "FPU is not initialized, but the project is compiling for an FPU. Please initialize the FPU before use."
#endif

int main(void)
{
    /* Loop forever */
	for(;;);
}

Good morning, today, as always I turned on CUBEIDE and started a blank project, however, i do not get the IOC file and have this code in my main, it is the first time i get this, what should i do to get a blank project normally initialised with an ioc file as always?

1 ACCEPTED SOLUTION

Accepted Solutions

Thanks, I found out that the problem is the update of STM, I was in 1.16 so i updated it to 1.19 and it worked

View solution in original post

3 REPLIES 3
CTapp.1
Senior II

Which version are you using? You may need to upgrade to 1.19.x 

Andrew Neil
Super User

@Jad wrote:

 i do not get the IOC file 


Lots of this being reported lately:

https://community.st.com/t5/stm32cubeide-mcus/ioc-file-not-generating/m-p/822500/highlight/true#M37461

 

A complex system that works is invariably found to have evolved from a simple system that worked.
A complex system designed from scratch never works and cannot be patched up to make it work.

Thanks, I found out that the problem is the update of STM, I was in 1.16 so i updated it to 1.19 and it worked