File tree 3 files changed +11
-13
lines changed
3 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -25,17 +25,17 @@ pub fn get_epoch_ms() -> u128 {
25
25
26
26
#[ derive( Clone , Debug ) ]
27
27
pub struct Packet {
28
- pub relative_time : u128 ,
29
- pub absolute_time : u128 ,
28
+ pub relative_time : f64 ,
29
+ pub absolute_time : f64 ,
30
30
pub direction : SerialDirection ,
31
31
pub payload : String ,
32
32
}
33
33
34
34
impl Default for Packet {
35
35
fn default ( ) -> Packet {
36
36
Packet {
37
- relative_time : 0 ,
38
- absolute_time : get_epoch_ms ( ) ,
37
+ relative_time : 0.0 ,
38
+ absolute_time : get_epoch_ms ( ) as f64 ,
39
39
direction : SerialDirection :: Send ,
40
40
payload : "" . to_string ( ) ,
41
41
}
@@ -44,8 +44,8 @@ impl Default for Packet {
44
44
45
45
#[ derive( Clone , Debug ) ]
46
46
pub struct DataContainer {
47
- pub time : Vec < u128 > ,
48
- pub absolute_time : Vec < u128 > ,
47
+ pub time : Vec < f64 > ,
48
+ pub absolute_time : Vec < f64 > ,
49
49
pub dataset : Vec < Vec < f32 > > ,
50
50
pub raw_traffic : Vec < Packet > ,
51
51
}
Original file line number Diff line number Diff line change @@ -1194,9 +1194,7 @@ impl MyApp {
1194
1194
}
1195
1195
}
1196
1196
}
1197
- FileDialogState :: None => {
1198
- self . file_opened = false ;
1199
- }
1197
+ FileDialogState :: None => { }
1200
1198
}
1201
1199
} ) ;
1202
1200
} ) ;
Original file line number Diff line number Diff line change @@ -252,8 +252,8 @@ fn perform_writes(
252
252
}
253
253
254
254
let packet = Packet {
255
- relative_time : Instant :: now ( ) . duration_since ( t_zero) . as_millis ( ) ,
256
- absolute_time : get_epoch_ms ( ) ,
255
+ relative_time : Instant :: now ( ) . duration_since ( t_zero) . as_millis ( ) as f64 ,
256
+ absolute_time : get_epoch_ms ( ) as f64 ,
257
257
direction : SerialDirection :: Send ,
258
258
payload : cmd,
259
259
} ;
@@ -274,8 +274,8 @@ fn perform_reads(
274
274
let delimiter = if buf. contains ( "\r \n " ) { "\r \n " } else { "\0 \0 " } ;
275
275
buf. split_terminator ( delimiter) . for_each ( |s| {
276
276
let packet = Packet {
277
- relative_time : Instant :: now ( ) . duration_since ( t_zero) . as_millis ( ) ,
278
- absolute_time : get_epoch_ms ( ) ,
277
+ relative_time : Instant :: now ( ) . duration_since ( t_zero) . as_millis ( ) as f64 ,
278
+ absolute_time : get_epoch_ms ( ) as f64 ,
279
279
direction : SerialDirection :: Receive ,
280
280
payload : s. to_owned ( ) ,
281
281
} ;
You can’t perform that action at this time.
0 commit comments