Open AT sample code gives error in GPSSTART

Hi,

sorry, i am new one to this,
The attached log is obtained by manually start the GPS by use the command
“at+gpsstart=1”

My exact need is how to start GPS through OpenAT.
For starting GPS through OpenAT i have downloaded simple sample application given in the library.
After downloaded that dwl file i started the application at+wopen=1

that time only i received the following error

+GPSEVINIT:1
+GPSEVSTART:0

Also can you tell me how to send GPSAT command?
I tried like follow

s8Return = adl_atCmdSend( "AT+CCLK?",
                                 ( adl_atRspHandler_t ) ATCmdSend_Response_Handler,
                                 "*",
                                 NULL );
ATCmdSend_Response_Handler ( adl_atResponse_t *paras )
{
    TRACE( ( APPLI_AT_CMD_TRACE_LEVEL, "ATCmdSend_Response_Handler: Response handled" ) );
    TRACE( ( APPLI_AT_CMD_TRACE_LEVEL, paras->StrData ) );

    /*adl_atSendResponse ( ADL_AT_PORT_TYPE ( ADL_AT_UART1,
                                                    ADL_AT_UNS ),
                                 "\r\n\ paras->StrData r\n" );*/
    adl_atSendResponsePort ( ADL_AT_UNS, ADL_PORT_NONE, paras->StrData );

    /* The response does not need to be forwarded to the Sierra Wireless stack */
    return FALSE;
}

but for this received ERROR response only. So can you guide me is there anyway send GPSAT command?

Thanks