public void CMD_Init() { if ((FormUI.Get_Com_Port() != null) && (uc1 == null)) { uc1 = new USARTClass(FormUI.Get_Com_Port()); } }
public void CMD_Close_Com() { if (uc1 != null) { uc1.closePort(); } uc1 = null; }
public bool CMD_Open_Com() { if (FormUI.Get_Com_Port() != null) { uc1 = new USARTClass(FormUI.Get_Com_Port()); } return(uc1.openPort()); }