hatzisn Expert Licensed User Longtime User Jul 22, 2021 #1 Can somebody explain to me why the GlobalStore.Slot3 is being truncated in this example project. The code is run in a WeMos D1 Mini v3.0.0. All I did was to increase the globalstore buffer (GlobalBuffer) to 5000 and #StackBufferSize to 3600. Attachments Bug_GlobalStore.zip 2.3 KB · Views: 305
Can somebody explain to me why the GlobalStore.Slot3 is being truncated in this example project. The code is run in a WeMos D1 Mini v3.0.0. All I did was to increase the globalstore buffer (GlobalBuffer) to 5000 and #StackBufferSize to 3600.
Erel B4X founder Staff member Licensed User Longtime User Jul 22, 2021 #2 You need to make another change if you want GlobalStore to support items longer than 255 bytes, change: B4X: Private lengths(5) As Byte To: B4X: Private lengths(5) As UInt I will add a note about it. Upvote 0
You need to make another change if you want GlobalStore to support items longer than 255 bytes, change: B4X: Private lengths(5) As Byte To: B4X: Private lengths(5) As UInt I will add a note about it.