Except RTK ... 190 1 d 29

Hi,

I’ve got the following exception:
Except RTK … 190 1 d 29

Where can I find error code description ?

Thanks !

You could try searching the FAQs - but see: viewtopic.php?f=47&t=2027&p=12025&hilit=generous#p7568 :angry:

Thank you a lot !!
Stack overflow…

To increase the stack size does I just need to use the following line ?

const u16 wm_apmCustomStackSize = 1024 * 8;

…I try it but the mem info still display:
StackSize: 3072

More over the exception occured when using the WIP plugin (I create a client TCP socket to exchange data with the socket server via the GPRS network) :
I use a temp buffer to read/Write data (using wip_read/wip_write), declared as follow:
static u8 my_Buffer[128];

When i grow up the buffer ( for example static u8 my_Buffer[192]; ) the board reset !

I try the following declaration
static u8 my_Buffer[128];
static u8 my_second_Buffer_just_to_test[192];
And with this two declarations all is ok… strange…

ANy idea ?

My problem is solved !!!

I move the line
const u16 wm_apmCustomStackSize = 2048;

to paste it BEFORE my includes !!!

And then the value is take into account !!

Many thanks awneil for the FAQs link !