ATResponse
void ATResponse(String Response)
Callback method for passing the response to a call of the non blocking
 version of the ATCommand.send function. The callback method, will be called
 by the runtime system if the response to an AT command sent by the non
 blocking version of the ATCommand.send function is available.
 While implementing a class for the ATCommandResponseListener interface, the
 user has to place the code for processing the response into this method.
 Currently there are 1024 bytes reserved to temporary store the response
 internally inside the virtual machine. Some AT commands return responses
 which might be longer (e.g. reading a phone book or the provider list at
 once). In this case this function is called more than once with the
 consecutive parts of the response. To avoid this an application should use
 the possible problematic commands in their format returning only single
 entries. Also if anything went wrong a null is passed to this function.
- Parameters:
 
Response - The response to the sent AT command. It is possible that null
                 is passed to this function in case of an error. 
- See Also:
 
ATCommand, 
ATCommand.send(String)