예제 #1
0
 public ValueStorageClass()
 {
     StorageSize = InternalFlashStorage.Size;
     OffSet      = 0;
     buffer      = new byte[StorageSize];
     InternalFlashStorage.Read(buffer);
 }
예제 #2
0
 public void WriteToFlash()
 {
     InternalFlashStorage.Write(buffer);
 }