How to switch between "CurrentSensing" hwVariants?
We are working on a custom inverter board based on a B-G431B-ESC1.
As we want to have the option to choose between Single-Shunt and Three-Shunt variant for current sensing, I implemented both features as hwVariants, according to the documentation.
See the following snippet:
{
"name": "CurrentSensing",
"type": "CurrentSensing",
"tRise": 45,
"hwVariants": [
{
"type": "ThreeShunt_AmplifiedCurrents",
"help": "DRV8323RS internal current amplifier is used",
"signals": {
"CURRENT_AMPL_U": [
{
"name": "PA1",
"help": "",
"cost": 0
}
],
"CURRENT_AMPL_V": [
{
"name": "PA7",
"help": "",
"cost": 0
}
],
"CURRENT_AMPL_W": [
{
"name": "PB0",
"help": "",
"cost": 0
}
]
},
"shuntResistor": 0.001,
"amplifyingNetworkImax": 40,
"amplifyingNetworkVm": 3.3,
"amplifyingNetworkPrating": 1.4,
"offsetNetworkAttenuation": 0.571,
"opAmpGain": 16,
"polarizationOffset": 2.057
},
{
"type": "SingleShunt_AmplifiedCurrents",
"help": "DRV8323RS internal current amplifier is used",
"signals": {
"CURRENT_AMPL": [
{
"name": "PA1",
"help": "",
"cost": 0
}
]
},
"shuntResistor": 0.001,
"amplifyingNetworkImax": 40,
"amplifyingNetworkVm": 3.3,
"amplifyingNetworkPrating": 1.4,
"opAmpGain": 16,
"offsetNetworkAttenuation": 0.571,
"polarizationOffset": 2.057
}
]
},
However, in the MC Workbench Wizard, only the Single-Shunt implementation is showing up.
How do I switch to the Three-Shunt variant?
