IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Entrée/Sortie Java Discussion :

RxTx lisaison série carte arduino


Sujet :

Entrée/Sortie Java

  1. #1
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Septembre 2017
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Septembre 2017
    Messages : 8
    Points : 6
    Points
    6
    Par défaut RxTx lisaison série carte arduino
    Bonjour, dans le cadre de mon projet je dois développer une application Java avec RxTx et un IHM pour finir. L'envoie des données via un port série émulé et putty fonctionne mais je le peux pas les envoyer deux fois de suite cela me retourne une erreur. Il faut fermer l'appli en cours d’exécution puis la relancer pour que cela fonctionne. Si vous pouviez m'aider ?

    Voici le code de chaque classe:

    la classe ParaSerie:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    class ParaSerie{
        protected String portName;
        protected int baudRate;
        public ParaSerie(String portName,int baudRate){
            this.portName=portName;
            this.baudRate=baudRate;
        }
        public String getPortName(){
            return portName;
        }
        public int getBaudRate(){
            return baudRate;
        }
    }
    La classe liaison série:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    import gnu.io.*;
    import java.io.*;
     
    public class LiaisonSerie {
        protected SerialPort serialPort;
        protected PrintStream ps;
        protected BufferedReader br;
        protected CommPortIdentifier portIdentifier;
     
        public LiaisonSerie(ParaSerie paraSerie) throws PortInUseException, NoSuchPortException, UnsupportedCommOperationException, IOException{
            String portName=paraSerie.getPortName();
            CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(portName);
            serialPort = (SerialPort) portIdentifier.open("proto",2000);
            serialPort.setSerialPortParams(paraSerie.baudRate,SerialPort.DATABITS_8,SerialPort.STOPBITS_1,SerialPort.PARITY_NONE);
            OutputStream os=serialPort.getOutputStream();
            ps=new PrintStream(os);
            InputStream is=serialPort.getInputStream();
            br = new BufferedReader(new InputStreamReader(is));        
        }
        public void send(String s){
            ps.print(s);
        }
        @SuppressWarnings("empty-statement")
        String readLine() throws IOException{
            System.out.println("attente reponse");
            while(br.ready()==false); // boucle attente
            String resp=br.readLine();
            return resp;
        }
        public void close(){
            serialPort.close();
        }
    }
    La classe Classe ConfigurerP17:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
     
    public class ConfigurerP17 {
        protected LiaisonSerie liaisonSerie;
        ConfigurerP17(LiaisonSerie ls){
            this.liaisonSerie=ls;
        }
        public void setAppEUI(String appEUI){
            this.liaisonSerie.send("AT+APPEUI="+appEUI+"\r\n");
            // TODO : tester réponse + delay
     
        }
     
        public void setDevEUI(String devEUI) { 
            this.liaisonSerie.send("AT+DEVEUI="+devEUI+"\r\n");
            //TODO : tester réponse + delay
     
        }
     
        public void setAppKEY(String appKEY) {
            this.liaisonSerie.send("AT+APPKEY="+appKEY+"\r\n");
            //TODO : tester réponse + delay
     
        }
        public void setAppfreq(String FREQ){
            this.liaisonSerie.send("AT+FREQ="+FREQ+"\r\n");
            //TODO : tester reponse + delay
    }
        public void setAppstart(String START){
            this.liaisonSerie.send("AT+START="+START+"\r\n");
            //TODO : tester reponse + delay
    }
        public void setAppstop(String STOP){
            this.liaisonSerie.send("AT+STOP="+STOP+"\r\n");
            //TODO : tester reponse
    }
    }
    La classe hexainputverifier:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    import javax.swing.*;
     
    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
     
    /**
     *
     * @author Alex
     */
    public class HexaInputVerifier extends InputVerifier{
     
        @Override
        public boolean verify(JComponent jc) {
            JTextField tf = (JTextField) jc;
            return true;
            /*
            try{
            Integer.parseInt(tf.getText(),16);// hexa
            }
            catch(NumberFormatException e){
                return false;
            }
            return true;*/
        }
     
    }
    La classe EUIInputVerfier et AppKEYInputVerifier sont similaire (changement du nombre de caractère), je ne vous en poste q'une:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    import javax.swing.*;
     
    /**
     *
     * @author Alex
     */
    public class EuiInputVerifier extends HexaInputVerifier {
        @Override
        public boolean verify(JComponent jc) {
            if(super.verify(jc)==false)
                return false;
            JTextField tf = (JTextField) jc;
            if(tf.getText().length()!=16)
                return false;
            return true;
        } 
    }
    Et enfin le code de l'IHM :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
     
    import static com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type.String;
    import gnu.io.CommPortIdentifier;
    import gnu.io.NoSuchPortException;
    import gnu.io.PortInUseException;
    import gnu.io.UnsupportedCommOperationException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.Vector;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.DefaultComboBoxModel;
    import gnu.io.CommPortIdentifier;
     
    /**
     *
     * @author Alex
     */
    public final class JFrameP17 extends javax.swing.JFrame {
     
        Enumeration<CommPortIdentifier> enumeration;
        /**
         * Creates new form JFrameP17
         */
        /*
        public JFrameP17() {
            initComponents();
        }
         */
        /**
         * This method is called from within the constructor to initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is always
         * regenerated by the Form Editor.
         */
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
        private void initComponents() {
     
            jTextFieldAppEUI = new javax.swing.JTextField();
            jLabel1 = new javax.swing.JLabel();
            jTextFieldDevEUI = new javax.swing.JTextField();
            jButtonEnvoyer = new javax.swing.JButton();
            jLabel2 = new javax.swing.JLabel();
            jLabel3 = new javax.swing.JLabel();
            jTextFieldappKEY = new javax.swing.JTextField();
            jComboBoxPortName = new javax.swing.JComboBox<>();
            jButtonActualiserCOM = new javax.swing.JButton();
     
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
     
            jTextFieldAppEUI.setInputVerifier(new EuiInputVerifier());
            jTextFieldAppEUI.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jTextFieldAppEUIActionPerformed(evt);
                }
            });
     
            jLabel1.setText("appEUI :");
     
            jTextFieldDevEUI.setInputVerifier(new EuiInputVerifier());
            jTextFieldDevEUI.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jTextFieldDevEUIActionPerformed(evt);
                }
            });
     
            jButtonEnvoyer.setText("envoyer");
            jButtonEnvoyer.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButtonEnvoyerActionPerformed(evt);
                }
            });
     
            jLabel2.setText("devEUI");
     
            jLabel3.setText("appKEY");
     
            jTextFieldappKEY.setInputVerifier(new APPKeyInputVerifier());
     
            jComboBoxPortName.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jComboBoxPortNameActionPerformed(evt);
                }
            });
     
            jButtonActualiserCOM.setText("Actualiser COM");
            jButtonActualiserCOM.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButtonActualiserCOMActionPerformed(evt);
                }
            });
     
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jLabel3)
                        .addComponent(jLabel2)
                        .addComponent(jLabel1))
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(12, 12, 12)
                            .addComponent(jTextFieldappKEY, javax.swing.GroupLayout.PREFERRED_SIZE, 236, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                            .addComponent(jButtonEnvoyer))
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                                .addGroup(layout.createSequentialGroup()
                                    .addGap(11, 11, 11)
                                    .addComponent(jTextFieldDevEUI))
                                .addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
                                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                                    .addComponent(jTextFieldAppEUI, javax.swing.GroupLayout.DEFAULT_SIZE, 199, Short.MAX_VALUE)))
                            .addGap(47, 47, 47)
                            .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                                .addComponent(jButtonActualiserCOM, javax.swing.GroupLayout.Alignment.TRAILING)
                                .addComponent(jComboBoxPortName, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 73, javax.swing.GroupLayout.PREFERRED_SIZE))))
                    .addContainerGap())
            );
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jTextFieldAppEUI, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel1)
                        .addComponent(jButtonActualiserCOM))
                    .addGap(8, 8, 8)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jTextFieldDevEUI, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jLabel2)
                        .addComponent(jComboBoxPortName, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                        .addComponent(jLabel3)
                        .addComponent(jTextFieldappKEY, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jButtonEnvoyer))
                    .addContainerGap(209, Short.MAX_VALUE))
            );
     
            pack();
        }// </editor-fold>                        
     
     
        private void jButtonEnvoyerActionPerformed(java.awt.event.ActionEvent evt) {                                               
            try {
                System.out.println("select : "+(String) jComboBoxPortName.getSelectedItem());
                ParaSerie paraSerie = new ParaSerie((String) jComboBoxPortName.getSelectedItem(), 115200);
                System.out.println("COM : " + paraSerie.getPortName());
                LiaisonSerie liaisonSerie = new LiaisonSerie(paraSerie);
                ConfigurerP17 p17 = new ConfigurerP17(liaisonSerie);
                p17.setAppEUI(this.jTextFieldAppEUI.getText());
                Thread.sleep(1000);
                p17.setDevEUI(this.jTextFieldDevEUI.getText());
                Thread.sleep(1000);
                p17.setAppKEY(this.jTextFieldappKEY.getText());
                Thread.sleep(1000);
            } catch (NoSuchPortException | PortInUseException | UnsupportedCommOperationException | IOException ex) {
                Logger.getLogger(JFrameP17.class.getName()).log(Level.SEVERE, null, ex);
                System.err.println("Erreur création port : " + ex.toString());
            } catch (InterruptedException ex) {
                Logger.getLogger(JFrameP17.class.getName()).log(Level.SEVERE, null, ex);
            }
        }                                              
     
        private void jTextFieldAppEUIActionPerformed(java.awt.event.ActionEvent evt) {                                                 
            // TODO add your handling code here:
        }                                                
     
        private void jTextFieldDevEUIActionPerformed(java.awt.event.ActionEvent evt) {                                                 
            // TODO add your handling code here:
        }                                                
     
        private void jComboBoxPortNameActionPerformed(java.awt.event.ActionEvent evt) {                                                  
            // TODO add your handling code here:
     
        }                                                 
     
        private void jButtonActualiserCOMActionPerformed(java.awt.event.ActionEvent evt) {                                                     
            // TODO add your handling code here:
            //this.jComboBoxPortName.addItem("COM1");
            searchPortCOM();
        }                                                    
     
        /**
         * @param args the command line arguments
         */
        public static void main(String args[]) {
            /* Set the Nimbus look and feel */
            //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
            /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
             * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
             */
            try {
                for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                    if ("Nimbus".equals(info.getName())) {
                        javax.swing.UIManager.setLookAndFeel(info.getClassName());
                        break;
                    }
                }
            } catch (ClassNotFoundException ex) {
                java.util.logging.Logger.getLogger(JFrameP17.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (InstantiationException ex) {
                java.util.logging.Logger.getLogger(JFrameP17.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (IllegalAccessException ex) {
                java.util.logging.Logger.getLogger(JFrameP17.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            } catch (javax.swing.UnsupportedLookAndFeelException ex) {
                java.util.logging.Logger.getLogger(JFrameP17.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
            }
            //</editor-fold>
     
            /* Create and display the form */
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new JFrameP17().setVisible(true);
                }
            });
        }
     
        public JFrameP17() {
            //enumeration = COMListener.getListePortCom();
            initComponents();
            searchPortCOM();
     
        }
     
        void searchPortCOM()
        {
            Enumeration<CommPortIdentifier> listePorts = CommPortIdentifier.getPortIdentifiers();
            int itemCount = this.jComboBoxPortName.getItemCount();
            for (int i = 0; i < itemCount; i++) {
                this.jComboBoxPortName.removeItemAt(0);
            }
            while (listePorts.hasMoreElements()) {
                CommPortIdentifier port = listePorts.nextElement();
                //System.out.println("port :"+port.getName());
                this.jComboBoxPortName.addItem(port.getName());
            }
        }
        // Variables declaration - do not modify                     
        private javax.swing.JButton jButtonActualiserCOM;
        private javax.swing.JButton jButtonEnvoyer;
        private javax.swing.JComboBox<String> jComboBoxPortName;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JLabel jLabel3;
        private javax.swing.JTextField jTextFieldAppEUI;
        private javax.swing.JTextField jTextFieldDevEUI;
        private javax.swing.JTextField jTextFieldappKEY;
        // End of variables declaration                   
     
    }
    Je vous fournit également le dossier du projet.
    Merci, je vous souhaite une excellente journée.
    Fichiers attachés Fichiers attachés

  2. #2
    Membre éprouvé
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Janvier 2007
    Messages
    697
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 36
    Localisation : France, Calvados (Basse Normandie)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Janvier 2007
    Messages : 697
    Points : 1 241
    Points
    1 241
    Par défaut
    Bonsoir,

    Dans jButtonEnvoyerActionPerformed tu recréer à chaque fois ta liaison série mais tu ne la ferme jamais explicitement. Le porte COM est donc probablement encore occupé à ce moment là.
    Il faut donc soit avoir une unique liaison série pour toute la durée de vie de l'application. Soit appeler liaisonSerie.close() à la fin de jButtonEnvoyerActionPerformed (la même chose est surement nécessaire pour paraSerie).

    Autre point très important qui pose problème. jButtonEnvoyerActionPerformed est appelé dans le thread graphique (EDT). En faisant un traitement long (écriture et lecture sur un port COM, Thread.sleep()) dans ce thread, tu vas freeze ton interface. Il faut donc effectuer le traitement de jButtonEnvoyerActionPerformed dans un nouveau thread.

  3. #3
    Futur Membre du Club
    Homme Profil pro
    Étudiant
    Inscrit en
    Septembre 2017
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Septembre 2017
    Messages : 8
    Points : 6
    Points
    6
    Par défaut
    Je vous remercie de votre réponse rapide. j'ai pu résoudre mon problème qui me pénalisé beaucoup. En effet créer un nouveau thread à alléger l'IHM.

    Encore merci, bonne journée.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Rxtx port série bloqué sous linux
    Par Laurent7 dans le forum Général Java
    Réponses: 2
    Dernier message: 02/12/2011, 09h12
  2. RXTX, port série et PortInUseException
    Par Sylvain__A_ dans le forum API standards et tierces
    Réponses: 2
    Dernier message: 08/02/2010, 15h39
  3. récupérer numéro de série carte mère
    Par totofe dans le forum C
    Réponses: 9
    Dernier message: 09/12/2008, 01h08
  4. cherche numéro de série carte mère asus
    Par aurel2638 dans le forum Composants
    Réponses: 1
    Dernier message: 01/03/2008, 15h25
  5. Numéro série carte mère
    Par guen dans le forum Access
    Réponses: 2
    Dernier message: 06/02/2007, 22h47

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo