UveosOnNation_VEGA_GsmWithG.../GsmWithGnss_Sms.c

17 lines
418 B
C

//
// Created by xemon on 28.11.22.
//
#include "GsmWithGnss_Private.h"
#include "AtGsmSms_Utils.h"
bool GsmWithGnss_SendDataPduSms(tGsmWithGnss *env, char *phone, uint8_t phoneSize, uint8_t *data, uint16_t dataSize) {
return AtGsmSms_UtilsSendPduData(
&env->gsmAt,
env->smsCenter->data, env->smsCenter->length,
phone, phoneSize,
data, dataSize
) == AT_OK;
}