Quantcast
Channel: Microcontrollers
Viewing all articles
Browse latest Browse all 4928

Using Multiple SMS in 1 call.

$
0
0
I am looking for a method regarding the problem ......
These are my SMS
Code (C):
  1.  
  2. const char SMS1[]  = "13546645";
  3. const char SMS2[]  = "fghfghfjn";
  4. const char SMS3[]  = "01234567890ABCDEF";
  5. char Temp[17];
  6.  
Say I need to send them in 1 call like
Code (C):
  1.  UART1_Write_Text(Const2Ram(Temp, SMS1));//
  2.       Delay_ms(500);
  3.     UART1_Write(0x1A);//  Cntrl+Z
  4.  
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.

Viewing all articles
Browse latest Browse all 4928

Trending Articles