You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nanoFramework.Tools.DebugLibrary.Shared/Extensions/FlashSectorDataExtensions.cs
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,18 @@ public static DeploymentSector ToDeploymentSector(this FlashSectorData value)
62
62
programmingAlignment=256/8;
63
63
break;
64
64
65
+
caseBlockRegionAttribute_ProgramWidthIs512bits:
66
+
programmingAlignment=512/8;
67
+
break;
68
+
69
+
caseBlockRegionAttribute_ProgramWidthIs1024bits:
70
+
programmingAlignment=1024/8;
71
+
break;
72
+
73
+
caseBlockRegionAttribute_ProgramWidthIs2048bits:
74
+
programmingAlignment=2048/8;
75
+
break;
76
+
65
77
default:
66
78
thrownewNotSupportedException($"The specified Flash Program Width '{blockRegionFlashProgrammingWidth}' is not supported. Please check the native implementation and/or that you have the .NET nanoFramework Visual Studio extension update.");
0 commit comments