We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b37dabc commit 277c633Copy full SHA for 277c633
src/main/docan/zlg/index.ts
@@ -548,17 +548,15 @@ export class ZLG_CAN extends CanBase {
548
// this.log.error((getTsUs() - this.startTime),'bus error')
549
} else {
550
if (this.canMiniBug) {
551
- setTimeout(() => {
552
- this._read(
553
- {
554
- canId: id,
555
- msgType: msgType,
556
- isEcho: true,
557
- data
558
- },
559
- getTsUs() - this.startTime
560
- )
561
- }, 0)
+ this._read(
+ {
+ canId: id,
+ msgType: msgType,
+ isEcho: true,
+ data
+ },
+ getTsUs() - this.startTime
+ )
562
}
563
564
0 commit comments