public MainForm() { InitializeComponent(); _serial = new SerialPort3964r(false); myPort = SerialPort3964r.GetPortNames(); //Obtenir tous les ports COM valides for (int i = 0; i < myPort.Length; i++) { CbPort.Items.Add(myPort[i]); } this.CbBaud.Items.Add(600); //Peuplement de la combobox avec les différents baud rates this.CbBaud.Items.Add(1200); this.CbBaud.Items.Add(4800); this.CbBaud.Items.Add(9600); this.CbBaud.Items.Add(14400); this.CbBaud.Items.Add(19200); this.CbBaud.Items.Add(38400); this.CbBaud.Items.Add(57600); this.CbBaud.Items.Add(115200); this.CbPort.SelectedIndex = 0; //1er port COM par défaut this.CbBaud.SelectedIndex = 3; //4ème baud rate par défaut _data = new byte[3]; _dataR = new byte[10]; }
public string[] GetPortNames() { return(SerialPort3964r.GetPortNames()); }