Help compiling in IAR

Hello I am trying very simple program with just:   xTaskCreate(vSIMFunction,"SIM", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );   vTaskStartScheduler(); And the creation of functon vSIMFunction is a simple loop. The fact is that all files are compiling, but i get an error in the linking process in IAR. The error is: Error[e133]: The output format motorola cannot handle multiple address spaces. Use format variants (-y -O) to specify  which address space is wanted Any idea of what can be wrong, my target is for AT90SC144 Thanks

Help compiling in IAR

It sounds like the output format is not correct.  In the project options, select the linker category, then select the output type you require (intel hex, or whatever).  You can select two output formats if this is what you require by selecting the "Extra Output" tab. Did you start your project based on the existing AVR/IAR demo? I’m not sure how much you will get done in the small amount of RAM you have availble. Regards.

Help compiling in IAR

Hi Richard, thanks for the help. My target have 8kRAM, hope it is enough to run the FreeRTOS. regards Victor