Hope you are safe and doing good. Clarification is required regarding ANSI C library for microcontroller client side.
gxProfileGeneric prfileGen;
if we call com_readRowsByEntry(&prfileGen,....) or com_readRowsByRange(&prfileGen,....) multiple times with different parameters like(large from and to date or more rows) then for the consecutive calls memory will be deallocated and allocated newly or how is it?
How do we free prfileGen object so that memory can be used for someother purpose
Note : we are not enabled GX_DLMS_MICROCONTROLLER macro
Hi Mohan,
Hi Mohan,
You can release buffer with obj_clearProfileGenericBuffer;
Something like:
gxProfileGeneric pg;
INIT(...)
READ...
obj_clearProfileGenericBuffer(&pg.buffer);
BR,
Mikko
Hi Mikko, Thank you
Hi Mikko,
Thank you