Hello, currently I'm working on an SMS server project. I've managed to get access to the SMSs stored on the device with AT commands, but I receive them in the following format, in a string:
07916303898800F0180B916303470054F60000808012415064402FD4321B14D6BFDDEF799AFED68168B45C4C1683C9400A2A34E9D4816E31594D4185269DB21D0887CBD100
This is actually an SMS, but I can't get it to human readable format. There is the CMGF=1 AT command, which would return text messages as text, but my device doesn't support it.
Can anybody help me convert this into a plain Unicode string, in C#?
I'd appreciate any help.