stgislander I want to see what's in the termios.h file so I can learn what the see how the structure is setup and what the constants are for setting up the serial port attributes.
ssh on to the board and do man termios
stgislander I was playing with strings and discovered that the function strcat is not in this version of string.h. I'd like to see what is actually available.
ssh on to the board and do man strcat. This actually shows that it is available with string.h, and in fact the following program builds and runs as expected:
#include <string.h>
#include <stdio.h>
int main()
{
char dest[100] = "abc";
char src[] = "def";
strcat(dest, src);
printf("src: %s, dest: %s\n", src, dest);
return 0;
}
produces
src: def, dest: abcdef