Sending Unicode Messages (such as in Persian and Arabic) in C# using AT Commands through GSM Modem

I have finally found out how to resolve this problem. As I said in in the “Additional Information” section of my question, sending line ends with line feeds caused this mismatching between SerialPort in C# and AT commands in hyperterminal for sending Unicode messages. I have just replaced \r with \n line feeds. The modified … Read more

Get CellID, MCC, MNC, LAC, and Network in iOS 5.1

I know three ways on how you can do it on iOS 5.x – 7.x. All of them use private APIs from CoreTelephony.framework. Supports both GSM and UMTS. 1) Using cell monitor struct CTResult { int flag; int a; }; extern CFStringRef const kCTCellMonitorCellType; extern CFStringRef const kCTCellMonitorCellTypeServing; extern CFStringRef const kCTCellMonitorCellTypeNeighbor; extern CFStringRef const … Read more