File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 19.0.2
2
+
3
+ - Fix [ #3 ] ( https://github.com/shinolab/autd3-rs/issues/3 ) : Cannot build with sync feature
4
+
1
5
# 19.0.1
2
6
3
7
- Update firmware to v4.1.2
Original file line number Diff line number Diff line change 4
4
* Created Date: 05/10/2023
5
5
* Author: Shun Suzuki
6
6
* -----
7
- * Last Modified: 13 /12/2023
7
+ * Last Modified: 14 /12/2023
8
8
* Modified By: Shun Suzuki (suzuki@hapis.k.u-tokyo.ac.jp)
9
9
* -----
10
10
* Copyright (c) 2023 Shun Suzuki. All rights reserved.
@@ -311,7 +311,10 @@ impl<L: Link> Controller<L> {
311
311
for dev in self . geometry . iter_mut ( ) {
312
312
dev. enable = true ;
313
313
}
314
- let res = self . send ( Stop :: new ( ) ) ?;
314
+ let res = self . send ( (
315
+ autd3_driver:: datagram:: Silencer :: default ( ) ,
316
+ crate :: gain:: Null :: default ( ) ,
317
+ ) ) ?;
315
318
let res = res & self . send ( Clear :: new ( ) ) ?;
316
319
self . link . close ( ) ?;
317
320
Ok ( res)
You can’t perform that action at this time.
0 commit comments