fff0036e5e
- completo modifica comportamento INIT - riorganizzazione aree memoria Fanuc/Mitsubishi
26 lines
709 B
C#
26 lines
709 B
C#
using IOB_UT_NEXT.Config.Mem;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOB_UT_NEXT.Config.Special
|
|
{
|
|
/// <summary>
|
|
/// Configurazione memoria a banchi (es: Fanuc, Mitsubishi)
|
|
/// </summary>
|
|
public class MemBankDto
|
|
{
|
|
/// <summary>
|
|
/// Conf aree di memoria da gestire
|
|
/// </summary>
|
|
public Dictionary<string, MemAreaDto> AreaConf { get; set; } = new Dictionary<string, MemAreaDto>();
|
|
|
|
/// <summary>
|
|
/// Valori dei bit di memoria da gestire con trace ad ogni check x debug
|
|
/// </summary>
|
|
public string Mem2Trace { get; set; } = "";
|
|
}
|
|
}
|