public RFEMemoryBlock()
 {
     m_eType = eMemoryType.MEM_FLASH;
     for (int nInd = 0; nInd < MAX_BLOCK_SIZE; nInd++)
     {
         m_arrBytes[nInd] = 0xff; //initialize with same values to imitate internal memory status
     }
 }
Example #2
0
 /// <summary>
 /// Constructor with a certain type or memory.
 /// </summary>
 /// <param name="__type"></param>
 public Memory(eMemoryType __type)
 {
     _type = __type;
 }
Example #3
0
 /// <summary>
 /// Constructor
 /// By default, the temporary memory is set.
 /// </summary>
 public Memory()
 {
     //default
     _type = eMemoryType.tempMemory;
 }