Tool/software:
Hello Designer,
I want to save config used in flash so as to initiate sensor every time boot up.
But I find there at most 512 chirps with size of 12KB, I make a attempt to initiate a array uint8[] in the code with size of 12KB:
global int8_t array[13*1024];
void func(){
memset((void*)&array, 0, sizeof(array))
CLI_write("some information");
}
But there is no information transferred to PC connected to the board.
So do you have some advice? Maybe give a bigger stack depth will make sense?
And there is another question, when I create a task, is there any request on stack depth?
I created a task with stack depth of 64 which uses CLI_write() to prove program running, but it can't work.
The information before the line creating task is transferred to PC, but the information after the line.
Need your help.
Regards,
Zishing Wang