Sponsored Content
Full Discussion: Setup Serial Port
Top Forums Web Development Setup Serial Port Post 302927935 by Meow613 on Sunday 7th of December 2014 03:03:47 PM
Old 12-07-2014
OK
Here is what works.

It passes the tests of loss of power and loss of serial connection, and is not depedent on minicom.

Code:
/*
*Scale7  Write data to Serial Port and Read it
*
*/ 

#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <stropts.h>
#include <asm/termios.h>
#include <unistd.h>
#include <string.h>

#define MODEMDEVICE "/dev/ttyS0"


int main(void) 
{
    char buf[8];
    int pos=0, num, num2,num3;
    FILE *fp1, *fp2;   
    int i, n3;

    struct termios options;


    speed_t baud = B9600; /* baud rate */

    

    cfsetospeed(&options, baud); /* baud rate */


    options.c_cflag |= PARENB;  // Allow parity to be set
    options.c_cflag &= ~PARODD; // Even parity
    options.c_cflag &= ~CSTOPB; // 1 stop bit 
    options.c_cflag &= ~CSIZE;  // Mask the character size bits 
    options.c_cflag |= CS7;     // 7 bits
    tcflush(fp1, TCOFLUSH);
    
    system("touch /tmp/testfile.txt");  


    system("chmod 666 /tmp/testfile.txt");  //ensure that the permissions are 666
    
    fp1 = fopen(MODEMDEVICE, "w+");
    fp2 = fopen("/tmp/testfile.txt", "w+");

    if(fp2 == NULL)
    {
        printf("testfile error. \n");
            return 1;
    }

    
    if(fp1 == NULL)
    {
        printf("initiation error. \n");
            return 1;
    }

    tcgetattr(fp1, &options); //The tcgetattr function fills the termios structure 
    //you provide with the current serial port configuration. 
    //After we set the baud rates and enable local mode and serial data receipt, 
    //we select the new configuration using tcsetattr. The TCSANOW constant specifies 
    //that all changes should occur immediately without waiting for output data to finish 
    //sending or input data to finish receiving. There are other constants 
    //to wait for input and output to finish or to flush the input and output buffers.
    
    tcsetattr(fp1, TCSANOW, &options); /* apply the settings */
    
    
//printf("scale7");
    fprintf(fp1, "%s","W\r\n");
    fread(buf, 1, 7,fp1 );
    fprintf(stdout,"%s", buf);
//printf("\n%s", buf);

    fclose(fp1);
    fwrite(buf, 1, 7,fp2 );
    
    fclose(fp2);

    system("/usr/bin/php /var/www/testscale2.php"); // call a PHP script

}

Thanks to all
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Serial port communication

We're running SCO Unix Openserver 5.05 and I'm having trouble with serial communication between the com2 serial port and a handheld device. Downloading data from Unix to the handheld works perfectly, but the other way around creates a major problem. I don't know whether it's a buffer overflow or... (1 Reply)
Discussion started by: Aretha
1 Replies

2. UNIX for Dummies Questions & Answers

serial port configuration

I am having trouble with a device connected through a serial port on my sun workstation ( I am running solaris 7). The seriel device works on an identical workstation running the same o/s version but when I move it to the initial workstation it doesn't work. I am using an rs232 serial cable and... (1 Reply)
Discussion started by: Henrik
1 Replies

3. SCO

Serial port configuration

Hi I have just re-installed Compaq ML350 G2 Server with Unix SCO 5.0.5 and informix DBMS . on this server we have 2 serial ports , unfortunately its not working. Can anyone help me to check the serial ports working or not OR guide me to reconfigure it. I have attached a device with... (1 Reply)
Discussion started by: munirh
1 Replies

4. Solaris

Serial port not found

Hi, I am working with solaris 9,SUN-Blade-100 and I want to communicate with the Serial port.To check whether the port is working or not.I write code and when I execute the file,then I got the output-- According to this,serial port is not found.can anyone please tell me how to configure the... (1 Reply)
Discussion started by: smartgupta
1 Replies

5. AIX

Serial port in AIX

Hi, How can i configure my modem in AIX thru serial port (sa0-->tty0) I have two port serial card configured as sa0 I created tty1 which port is tty0 and which port is tty1 how can i know?? (1 Reply)
Discussion started by: pchangba
1 Replies

6. Solaris

Serial port on the T5140

What is the serial port on the T5140 used for. (4 Replies)
Discussion started by: pgsanders
4 Replies

7. Shell Programming and Scripting

Need help with serial port

Hi, I have a external board connected to my serial port. I need to execute "shutdown -r now" command when system boot up. When system boots up it requires a username ans password. Then I need to run my command. I can use rc script but that is rebooting system before it asks for username and... (0 Replies)
Discussion started by: charlie.arya
0 Replies

8. Solaris

How to enable Serial port on ILOM, when Network Port is enabled in parallel

Hi Everyone, In my environment, I have few T5220. On the iLOM Management Card, I have both Network and Serial port are cabled, I don't have any issues while I try to connect using Network Management port, but when I try to connect the serial port for the same server which is actually connected... (3 Replies)
Discussion started by: bobby320
3 Replies

9. Solaris

How to setup a serial console?

i am running solaris 10 in my vmware workstation. How to setup a console for my solaris box. in Vmware i could see a serial port option. can some one help me on how i can setup a console . (0 Replies)
Discussion started by: chidori
0 Replies

10. Solaris

Cabling and adapters to communicate to service processor serial port from Windows PC with USB port.

Hello, I have an unloaded T5140 machine and want to access the ILOM for the first time and subsequently the network port after that., and then load Solaris 10 the final January 2011 build. The first part is what confuses me -the cabling. I am coming from a Windows machine (w/appropriate... (5 Replies)
Discussion started by: joboy
5 Replies
TERMIOS(3)						     Library Functions Manual							TERMIOS(3)

NAME
termios, tcgetattr, tcsetattr, cfgetispeed, cfgetospeed, cfsetispeed, cfsetospeed, tcsendbreak, tcdrain, tcflush, tcflow - change terminal attributes SYNOPSIS
#include <termios.h> int tcgetattr(int fd, struct termios *tp) int tcsetattr(int fd, int action, const struct termios *tp) speed_t cfgetispeed(const struct termios *tp) speed_t cfgetospeed(const struct termios *tp) int cfsetispeed(struct termios *tp, speed_t speed) int cfsetospeed(struct termios *tp, speed_t speed) int tcsendbreak(int fd, int duration) int tcdrain(int fd) int tcflush(int fd, int queue_selector) int tcflow(int fd, int action) DESCRIPTION
These are the user functions that modify the tty attributes mentioned in tty(4). In the following, fd refers to an open terminal device file, tp is the address of a struct termios, and speed and values of type speed_t are equal to one of the B0, B50, etc. baud rate symbols. All functions, symbols, and types are declared in <termios.h>. The effects of the tty functions are: tcgetattr(fd, tp) Get the current settings of the tty attributes. tcsetattr(fd, TCSANOW, tp) Set the terminal attributes. The change occurs immediately. tcsetattr(fd, TCSADRAIN, tp) Set the terminal attributes. The change occurs once all the output waiting in the output queues has been transmitted. This should be used when options affecting output are changed. tcsetattr(fd, TCSAFLUSH, tp) Set the terminal attributes. But first wait until all the output waiting in the output queues has been transmitted. All input waiting in the input queues is then discarded and the change is made. This should be used when switching from canonical to non- canonical mode or vice-versa. (Oddly enough, this is seldom what you want, because it discards typeahead. An editing shell does the Right Thing if it uses TCSANOW instead. POSIX may not guarantee good results, but in practice most systems make the canonical input available in raw mode.) cfgetispeed(tp) Return the input baud rate encoded in the termios structure. cfgetospeed(tp) Return the output baud rate encoded in the termios structure. cfsetispeed(tp, speed) Encode the new input baud rate into the termios structure. cfsetospeed(tp, speed) Encode the new output baud rate into the termios structure. tcsendbreak(fd, duration) Emit a break condition on a serial line for a time indicated by duration. (Always 0.4 seconds under Minix, duration is ignored.) tcdrain(fd) Wait until all output waiting in the output queues has been transmitted. tcflush(fd, TCIFLUSH) Flush the input queue. (I.e. discard it.) tcflush(fd, TCOFLUSH) Flush the output queue. tcflush(fd, TCIOFLUSH) Flush the input and output queues. tcflow(fd, TCOOFF) Suspend output. (Like the effect of STOP.) tcflow(fd, TCOON) Restart output. (Like the effect of START.) tcflow(fd, TCIOFF) Transmit a STOP character intended to make the remote device stop transmitting data. tcflow(fd, TCION) Transmit a START character to restart the remote device. SEE ALSO
stty(1), tty(4). DIAGNOSTICS
All functions return 0 unless otherwise specified, and -1 on error with errno set to indicate the type of error. The most notable errors are ENOTTY if fd does not refer to a terminal device, and EINTR if one of the functions waiting for output to drain is interrupted. NOTES
It may be interesting to know that the functions operating on the tty are directly translated into the following Minix ioctl requests: TCGETS, TCSETS (now), TCSETSW (drain), TCSETSF, (flush), TCSBRK, TCDRAIN, TCFLSH, and TCFLOW. You should only use this knowledge when try- ing to understand the tty driver code, of course. BUGS
AUTHOR
Kees J. Bot (kjb@cs.vu.nl) TERMIOS(3)
All times are GMT -4. The time now is 03:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy