I am looking for a method regarding the problem ......
These are my SMS
Say I need to send them in 1 call like
1.My buffer is 17 since that max message length is 17 char. Correct ?
2.If I wanna send three SMS , I have to repeat the...
Using Multiple SMS in 1 call.
These are my SMS
Code (C):
- const char SMS1[] = "13546645";
- const char SMS2[] = "fghfghfjn";
- const char SMS3[] = "01234567890ABCDEF";
- char Temp[17];
Code (C):
- UART1_Write_Text(Const2Ram(Temp, SMS1));//
- Delay_ms(500);
- UART1_Write(0x1A);// Cntrl+Z
2.If I wanna send three SMS , I have to repeat the...
Using Multiple SMS in 1 call.