cancel
Showing results for 
Search instead for 
Did you mean: 

I am trying to rebuild my project.stw with the cosmic c compiler, but it is stuck at compiling stage. It was working fine, and suddenly it couldn't compile. When I try to compile the c files in cosmic it shows another error as shown in the screenshots.

Invincibl3
Associate

0693W00000WKodGQAT.png0693W00000WKod1QAD.png

10 REPLIES 10
Giovanni Preda
Associate II

COSMIC confirmed that there is a bug in version 4.5.5.

If you have an empty infinite loop il your code, there needs to be a nop instruction (or something else) inside of it.

Example:

  while (1)
  {
	_asm("nop");
  }