示例#1
0
 public static string FormatResponse(string response)
 {
     return("+$" + response + "#" + GDBPacket.CalculateCRC(response));
 }
示例#2
0
 public static string FormatResponse(string response, bool ack)
 {
     return(((ack)?"+$":"$") + response + "#" + GDBPacket.CalculateCRC(response));
 }