Hi,
just got a DUE here and try to shovel bulk. It works fine, but ist it the flash or the sram, I use?
(shell be usefull for the Astream_NewData buffer problem)
wish you a healthy start from berlin
just got a DUE here and try to shovel bulk. It works fine, but ist it the flash or the sram, I use?
B4X:
Sub Process_Globals
Private random As RandomAccessFile
end sub
Private Sub AppStart
Dim bulk(5000) As Byte 'init
random.Initialize(bulk,False)
For i = 0 To 999 ' fill
random.WriteByte(i Mod 255,i )
Next
Delay(1000)
Dim bulk2(100) As Byte = random.ReadBytes2(100,0)
For i = 0 To 99
log(bulk2(i))
Next
end sub
(shell be usefull for the Astream_NewData buffer problem)
wish you a healthy start from berlin
Last edited: