Coder Social home page Coder Social logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 27, 2024
By default jSSC use TIOCEXCL for exclusive access to serial port resource, in 
this case you can't open same port twice (except root, or you can disable 
TIOCEXCL by setting JSSC_NO_TIOCEXCL JVM property). But it's really bad 
practice, you can not get the same data from one serial port by using 2 new 
SerialPort objects. If one object read data from serial port buffer readed data 
is purged from buffer.

You should create some serial port provider for reading data, and providing it 
to any ViewPart you need.

Original comment by [email protected] on 30 Aug 2013 at 4:49

from java-simple-serial-connector.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 27, 2024
Hi Alexey,

Thanks for confirming that. Below is the initial draft of the potential 
provider that it might help others with similar case scenario.

Thanks again for such wonderful API!


----------------------------------
import java.util.ArrayList;
import java.util.List;

import jssc.SerialPort;
import jssc.SerialPortEvent;
import jssc.SerialPortEventListener;
import jssc.SerialPortException;

public class SerialConnectionProvider {
    private static final SerialConnectionProvider INSTANCE = new SerialConnectionProvider();
    private static List<SerialPortEventListener> consumerListeners;
    private static SerialPort serialPort;

    private SerialConnectionProvider() {
        consumerListeners = new ArrayList<SerialPortEventListener>();
    }

    public static SerialConnectionProvider getInstance(String port, SerialPortEventListener consumerListener) throws SerialPortException {
        if (serialPort == null) {
            serialPort = new SerialPort(port);
            serialPort.openPort();
            serialPort.setParams(SerialPort.BAUDRATE_9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
            serialPort.setEventsMask(SerialPort.MASK_RXCHAR);
            serialPort.addEventListener(new SerialPortListener());  
        }
        consumerListeners.add(consumerListener);

        return SerialConnectionProvider.INSTANCE;
    }

    static class SerialPortListener implements SerialPortEventListener {
        public void serialEvent(SerialPortEvent event) {
            if (event.isRXCHAR() && event.getEventValue() > 10) {
                for (SerialPortEventListener listener : consumerListeners) {
                    listener.serialEvent(event);
                }
            }
        }
    }

    public synchronized boolean disconnect(SerialPortEventListener listener) throws SerialPortException {
        boolean result = true;
        if (serialPort.isOpened() && consumerListeners.size() == 1) {
            result = serialPort.closePort();
        }
        consumerListeners.remove(listener);
        return result;
    }

    public SerialPort getSerialPort() {
        return serialPort;
    }
}

Original comment by [email protected] on 30 Aug 2013 at 5:18

from java-simple-serial-connector.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 27, 2024

Original comment by [email protected] on 12 Sep 2014 at 2:31

  • Changed state: Done

from java-simple-serial-connector.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.