Hi All,
I have a few questions about AD Memory. More specifically cell ids.
I have been using the following code to retrieve the cell ids I have subscribed to.
wm_lst_t CellList;
s32 listresult = adl_adGetCellList ( &CellList );
u16 count = wm_lstGetCount(CellList);
u32 last_cell_id = *(u32 *) wm_lstGetItem(CellList, count - 1);
Is there a way to retrieve a list of the cell ids which have been deleted without trying to read data from a cell id to determine if it has been deleted?
Also, if I subscribe to a cell id, use it and then delete it, can I resubscribe to that cell id to use it for new data or do I have to recompact before using it?
Thanks!