sicpaconnexions / SICPA_Connexions / Model / BytesPrtc.cs @ 35f65dee
Historique | Voir | Annoter | Télécharger (416 octets)
1 | 03682d21 | ajournaux | 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 | } |