Definition in file AVRGSM_zip.h.
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | hex_nmbr "0123456789ABCDEF" |
Flash string container, look up table. | |
#define | MESSAGE_ENCODED_SIZE 70 |
Size of SMS payload. | |
#define | MESSAGE_LENGTH 80 |
Max allowed text in SMS. | |
Functions | |
int | ZIP_atoi (unsigned char *a) |
Converting ascii char string to int. | |
int | ZIP_compress (unsigned char *in, unsigned char *discarded, unsigned char ret[]) |
ZIP_compress will take a user defined text code it into the PDU format. | |
int | ZIP_decompress (unsigned char *compressed, unsigned char *decompressed) |
ZIP_decompress will decode a message in PDU format into a readable string. | |
int | ZIP_htoi (unsigned char hex) |
Convert hex to int. | |
void | ZIP_itoh (int n, unsigned char *ret) |
Converting int [0->255] to hex value. |
|
Flash string container, look up table.
Definition at line 27 of file AVRGSM_zip.h. |
|
Size of SMS payload.
Definition at line 25 of file AVRGSM_zip.h. |
|
Max allowed text in SMS.
Definition at line 26 of file AVRGSM_zip.h. Referenced by ZIP_compress(). |
|
Converting ascii char string to int.
Definition at line 140 of file AVRGSM_zip.c. Referenced by TOOLS_decodeCMTI().
|
|
ZIP_compress will take a user defined text code it into the PDU format.
Local variables Definition at line 40 of file AVRGSM_zip.c. References hex_lookup, mask, MESSAGE_LENGTH, and power. Referenced by API_sendmsg().
|
|
ZIP_decompress will decode a message in PDU format into a readable string.
Local variables Definition at line 91 of file AVRGSM_zip.c. References mask, and ZIP_htoi(). Referenced by API_readmsg().
Here is the call graph for this function: ![]() |
|
Convert hex to int. This function will take a hex in char format and return int value
Definition at line 164 of file AVRGSM_zip.c. Referenced by TOOLS__decodeCMGR(), and ZIP_decompress().
|
|
Converting int [0->255] to hex value.
Definition at line 187 of file AVRGSM_zip.c. References hex_lookup. Referenced by API_sendmsg().
|