tirecheck-device-sdk 0.2.38 → 0.2.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -877,6 +877,12 @@ const bridgeCommandStructures = {
877
877
  canTermination: {
878
878
  size: 1,
879
879
  description: "CAN Termination disabled / enabled"
880
+ },
881
+ baudRate: {
882
+ size: 2,
883
+ description: "Baud rate",
884
+ display: "decimal",
885
+ version: "1.0.5"
880
886
  }
881
887
  }
882
888
  },
@@ -3788,7 +3794,7 @@ function getSimulatedBridgeTemplate() {
3788
3794
  transparentFilteredMode: "01",
3789
3795
  spnsPgnsBitmap: "00000000"
3790
3796
  },
3791
- workshopCANSettings: { canTermination: "01" },
3797
+ workshopCANSettings: { canTermination: "01", baudRate: 0 },
3792
3798
  customerPressureThresholds: {
3793
3799
  axle01: "32190912",
3794
3800
  axle02: "32190912",
package/dist/index.d.cts CHANGED
@@ -125,6 +125,12 @@ declare const _default: {
125
125
  size: number;
126
126
  description: string;
127
127
  };
128
+ baudRate: {
129
+ size: number;
130
+ description: string;
131
+ display: "decimal";
132
+ version: string;
133
+ };
128
134
  };
129
135
  };
130
136
  customerCanSettings: {
package/dist/index.d.mts CHANGED
@@ -125,6 +125,12 @@ declare const _default: {
125
125
  size: number;
126
126
  description: string;
127
127
  };
128
+ baudRate: {
129
+ size: number;
130
+ description: string;
131
+ display: "decimal";
132
+ version: string;
133
+ };
128
134
  };
129
135
  };
130
136
  customerCanSettings: {
package/dist/index.d.ts CHANGED
@@ -125,6 +125,12 @@ declare const _default: {
125
125
  size: number;
126
126
  description: string;
127
127
  };
128
+ baudRate: {
129
+ size: number;
130
+ description: string;
131
+ display: "decimal";
132
+ version: string;
133
+ };
128
134
  };
129
135
  };
130
136
  customerCanSettings: {
package/dist/index.mjs CHANGED
@@ -870,6 +870,12 @@ const bridgeCommandStructures = {
870
870
  canTermination: {
871
871
  size: 1,
872
872
  description: "CAN Termination disabled / enabled"
873
+ },
874
+ baudRate: {
875
+ size: 2,
876
+ description: "Baud rate",
877
+ display: "decimal",
878
+ version: "1.0.5"
873
879
  }
874
880
  }
875
881
  },
@@ -3781,7 +3787,7 @@ function getSimulatedBridgeTemplate() {
3781
3787
  transparentFilteredMode: "01",
3782
3788
  spnsPgnsBitmap: "00000000"
3783
3789
  },
3784
- workshopCANSettings: { canTermination: "01" },
3790
+ workshopCANSettings: { canTermination: "01", baudRate: 0 },
3785
3791
  customerPressureThresholds: {
3786
3792
  axle01: "32190912",
3787
3793
  axle02: "32190912",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tirecheck-device-sdk",
3
- "version": "0.2.38",
3
+ "version": "0.2.39",
4
4
  "description": "SDK for working with various devices produced by Tirecheck via Bluetooth (CAN Bridge, Routers, Sensors, FlexiGauge, PressureStick, etc)",
5
5
  "author": "Leonid Buneev <leonid.buneev@tirecheck.com>",
6
6
  "license": "ISC",