This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Stacksize and last line problem



Hey there,

 

I finally (I don't know why but I am standing in my own light ...) got to the point to compile the first file with CCS and CSL. The code looks like that:

#include "csl_i2c.h"
#include <stdio.h>
#include "csl_general.h"

void main(void){
;   
}

 

so pretty much nothing, just to see if it's compilable. It is. But I got these three warnings:

Severity and Description    Path    Resource    Location    Creation Time    Id
creating ".stack" section with default size of 0x3e8; use the -stack option to change the default size        hello_world    line 0    1289340392586    26
creating ".sysstack" section with default size of 0x3e8; use the -sysstack option to change the default size        hello_world    line 0    1289340392587    27
last line of file ends without a newline    hello_world    main.c    line 8    1289340392586    25

I compared then the setting for the stack size in the project properties with a random CSL examle project (i2c_polled) and there's also no setting for the stack size.

I read that these warnings are just a notice. But why is the CSL example not giving me those ?

 

Cheers