Skip to content

Commit

Permalink
Updated StreamDataLogger instances to apply the register word order p…
Browse files Browse the repository at this point in the history
…roperty based on the selected DUT personality. Upreved to 2.9.5.3
  • Loading branch information
ajn96 committed Mar 18, 2022
1 parent db45991 commit 389e268
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/IMUStreamingGUI.vb
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ Public Class IMUStreamingGUI
fileManager.FileMaxDataRows = 1000000 'Keep this under 1M samples to open in Excel
fileManager.BufferTimeoutSeconds = 10 'Timeout in seconds
fileManager.BuffersPerWrite = 10000
'set the register word order
fileManager.LowerWordFirst = m_TopGUI.Dut.IsLowerFirst

'hide other forms
InteractWithOtherForms(True, Me)
Expand Down
2 changes: 1 addition & 1 deletion src/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ Imports System.Runtime.InteropServices
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("2.9.5.2")>
<Assembly: AssemblyFileVersion("2.9.5.3")>
2 changes: 2 additions & 0 deletions src/RegisterBulkReadGUI.vb
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ Public Class RegisterBulkReadGUI
fileManager.FilePath = savePath + "\"
fileManager.Buffers = totalDRCaptures 'Number of times to read all the registers in the reg map
fileManager.Captures = 1 'Number of times to read each register in the reg map
'set the register word order
fileManager.LowerWordFirst = m_TopGUI.Dut.IsLowerFirst
Try
fileManager.FileMaxDataRows = Convert.ToInt32(linesPerFile.Text()) 'Keep this under 1M samples to open in Excel
fileManager.BuffersPerWrite = Convert.ToInt32(SamplesPerWrite.Text) 'Dynamic buffers per write to avoid storing too much data in RAM
Expand Down

0 comments on commit 389e268

Please sign in to comment.