смс — код C ++ для отправки сообщений с GSM

Я только что подключил свой Raspberry Pi к SM5100b GSM. Я хотел бы проверить это, отправив простое сообщение на мой мобильный телефон. Я могу сделать это с помощью эмуляторов, таких как cutecom и minicom (потому что у меня есть версия raspbian linux). Но есть ли в C ++ код, который выполняет эту работу? Я не использую Arduino, только SM5100B. Я написал этот код до сих пор и, конечно, он еще не работает

 #include <stdio.h> // standard input / output functions
#include <string.h> // string function definitions
#include <unistd.h> // UNIX standard function definitions
#include <fcntl.h> // File control definitions
#include <errno.h> // Error number definitions
#include <termios.h> // POSIX terminal control definitionss
#include <time.h>   // time callsint open_port(void)
{
int fd; // file description for the serial port
fd = open("/dev/ttyAMA0", O_RDWR | O_NOCTTY | O_NDELAY);
if(fd == -1) // if open is unsucessful
{
//perror("open_port: Unable to open /dev/ttyAMA0 - ");
printf("open_port: Unable to open /dev/ttyAMA0. \n");
}
else
{
fcntl(fd, F_SETFL, 0);
printf("port is open.\n");
}

return(fd);
} //open_port

int configure_port(int fd)      // configure the port
{
struct termios port_settings;      // structure to store the port settings in
cfsetispeed(&port_settings, B9600);    // set baud rates
cfsetospeed(&port_settings, B9600);
port_settings.c_cflag &= ~PARENB;    // set no parity, stop bits, data bits
port_settings.c_cflag &= ~CSTOPB;
port_settings.c_cflag &= ~CSIZE;
port_settings.c_cflag |= CS8;
tcsetattr(fd, TCSANOW, &port_settings);    // apply the settings to the port
return(fd);

} //configure_port

int query_modem(int fd)   // query modem with an AT command
{
char n;
fd_set rdfs;
struct timeval timeout;

// initialise the timeout structure
timeout.tv_sec = 10; // ten second timeout
timeout.tv_usec = 0;unsigned char send_bytes[] = "AT+CMGF=1";
unsigned char send_bytes1[] = "AT+CMGS=\"603*****\"";
unsigned char send_bytes3[] = "TEST";
// puts(send_bytes);
write(fd, send_bytes, 13);  //Send data
write(fd, send_bytes1, 13);
write(fd, send_bytes3, 13);
//printf("Wrote the bytes. \n");

// do the select
n = select(fd + 1, &rdfs, NULL, NULL, &timeout);

// check if an error has occured
if(n < 0)
{
perror("select failed\n");
}
else if (n == 0)
{
puts("Timeout!");
}
else
{
printf("\nBytes detected on the port!\n");
}

return 0;

} //query_modem

int main(void)
{
int fd = open_port();
configure_port(fd);
query_modem(fd);
return(0);

} //main

0

Решение

Откройте соответствующий последовательный порт (/ dev / ttySx, где x, скорее всего, число), используйте write или fwrite для записи в порт, закройте порт, выйдите из программы.

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]