Skip to content

Commit

Permalink
fix(config): SKU bytes can be something besides 0
Browse files Browse the repository at this point in the history
  • Loading branch information
ccutrer committed Sep 19, 2024
1 parent c21f137 commit efb7e87
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,15 +227,15 @@
"label": "SKU Number (First 4 Bytes)",
"valueSize": 4,
"minValue": 0,
"maxValue": 0,
"maxValue": 4294967295,
"defaultValue": 0,
"unsigned": true
},
"dipswitch_sku_lastfour": {
"label": "SKU Number (Last 4 Bytes)",
"valueSize": 4,
"minValue": 0,
"maxValue": 0,
"maxValue": 4294967295,
"defaultValue": 0,
"unsigned": true
},
Expand Down

0 comments on commit efb7e87

Please sign in to comment.