resUpdateGoGPSUpBodyList function

void resUpdateGoGPSUpBodyList(
  1. Pointer<PERIPHERAL_GOGPS_BODY_V2> pGoGPSBody,
  2. int size
)

Implementation

void resUpdateGoGPSUpBodyList(
    Pointer<PERIPHERAL_GOGPS_BODY_V2> pGoGPSBody, int size) {
  for (int i = 0; i < size; i++) {
    CLCmdGogpsBodyV2.subject.add(CLCmdGogpsBodyV2.from(pGoGPSBody[i]));
  }
  slog('resUpdateGoGPSUpBody: entered');
}