Beispiel #1
0
 public void SetWaferSizeAvailable(StockerInventory inventory)
 {
     WriteMemory<StockerInventoryToStreamConverter, StockerInventory>(haStockerInventory, inventory);
 }
Beispiel #2
0
 public new void SetWaferSizeAvailable(StockerInventory inventory)
 {
     _logger.Debug(_moduleName, string.Format("{0}.SetWaferSizeAvailable({1})", typeof(StockerPlc).Name, inventory));
     base.SetWaferSizeAvailable(inventory);
 }
 private void CompareObjects(StockerSimulatorPlcCommunication simulator, bool barcodeError, CarrierPlateRouting routing, 
     bool isMagazineChanged, bool isMagazineBarcodeReadedOk, StockerInventory inventory, MagazineSelection selection)
 {
     Assert.AreEqual<bool>(barcodeError, simulator.BarcodeError);
     Assert.AreEqual<CarrierPlateRouting>(routing, simulator.CarrierPlateRouting);
     Assert.AreEqual<bool>(isMagazineChanged, simulator.IsMagazineChange);
     Assert.AreEqual<bool>(isMagazineBarcodeReadedOk, simulator.IsInputMagazineBarcodeOK);
     Assert.AreEqual<StockerInventory>(inventory, simulator.StockerInventory);
     Assert.AreEqual<MagazineSelection>(selection, simulator.Selection);
 }
Beispiel #4
0
 public static string GetSetWaferSizeAvailableCommand(StockerInventory inventory)
 {
     return (new PlcMemoryWriteCommand(PlcHelper.GetAddressSpace(), 0x132, new StockerInventoryToStreamConverter().TryConvert(inventory))).CommandToString();
 }