mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
Disk: Refactor ExtExtractorDiskReadDriver
Reading disk data is currently accomplished by redirecting the raw input stream for the duration of the acquisition, during which no other operation can be carried out. This change moves disk data reading into the packetizer so the familiar request/reply with message filters can be used. To accomplish this the deprecated ISOPIC network type was dropped because the two messages share this network ID. Also fixes live data packet lengths which were off-by-one.
This commit is contained in:
@@ -47,7 +47,7 @@ protected:
|
||||
{
|
||||
0xaa, //start AA
|
||||
0x0B, //netid main51
|
||||
0x2F, 0x00, //size little end 16
|
||||
0x30, 0x00, //size little end 16
|
||||
0xF0, //extended header command
|
||||
0x35, 0x00, //Live data subcommand little 16
|
||||
0x26, 0x00, //extended subcommand size, little 16
|
||||
@@ -68,7 +68,7 @@ protected:
|
||||
{
|
||||
0xaa, //start AA
|
||||
0x0B, //netid main51
|
||||
0x15, 0x00, //size little end 16
|
||||
0x16, 0x00, //size little end 16
|
||||
0xF0, //extended header command
|
||||
0x35, 0x00, //Live data subcommand little 16
|
||||
0x0C, 0x00, //extended subcommand size, little 16
|
||||
@@ -82,7 +82,7 @@ protected:
|
||||
{
|
||||
0xaa, //start AA
|
||||
0x0B, //netid main51
|
||||
0x15, 0x00, //size little end 16
|
||||
0x16, 0x00, //size little end 16
|
||||
0xF0, //extended header command
|
||||
0x35, 0x00, //Live data subcommand little 16
|
||||
0x0C, 0x00, //extended subcommand size, little 16
|
||||
|
||||
Reference in New Issue
Block a user