Statistiques
| Branche: | Révision:

sicpaconnexions / SICPA_Connexions / Model / BytesPrtc.cs @ master

Historique | Voir | Annoter | Télécharger (416 octets)

1
using System;
2
using System.Collections.Generic;
3
using System.Text;
4

    
5
namespace SICPA_Connexions.Model
6
{
7
    public static class BytesPrtc
8
    {
9
        public static byte STX = 0x02;
10
        public static byte DST_TX = 0x49;
11
        public static byte SRC_TX = 0x41;
12
        public static byte DST_RX = 0x41;
13
        public static byte SRC_RX = 0x49;
14
        public static byte ETX = 0x03;
15
    }
16
}