123

Dependencies:   mbed

Fork of LG by igor Apu

Committer:
Diletant
Date:
Sun Jun 19 03:54:35 2016 +0000
Revision:
173:7f938afb0447
Parent:
167:bedc0a9d559a
Child:
174:0f86eedd511c
Device&... update. Not final!!!

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Diletant 137:14a0c452cf32 1 #include "Device.h"
Diletant 137:14a0c452cf32 2
Diletant 137:14a0c452cf32 3 Device device;
Diletant 137:14a0c452cf32 4 HashParam hashParamTable[HASH_PARAM_COUNT];
Diletant 149:abbf7663d27d 5 HashFunc hashFuncTable[HASH_FUNC_COUNT];
Diletant 137:14a0c452cf32 6
Diletant 173:7f938afb0447 7 //Measurement cycle definitions and functions
Diletant 173:7f938afb0447 8 void DeviceInitMeasurementCycleDefaultSettings(void){
Diletant 173:7f938afb0447 9 }
Diletant 156:e68ee0bcdcda 10
Diletant 173:7f938afb0447 11 void DeviceInitMeasurementCycleState(void){
Diletant 173:7f938afb0447 12 device.measurement.counter = 0;
Diletant 173:7f938afb0447 13 device.measurement.length = 32;
Diletant 156:e68ee0bcdcda 14 }
Diletant 156:e68ee0bcdcda 15
Diletant 173:7f938afb0447 16 void DeviceMeasurementInterruptHandler(void) {
Diletant 173:7f938afb0447 17 //Read QEI
Diletant 173:7f938afb0447 18 qeiProcess();
Diletant 173:7f938afb0447 19 //Count
Diletant 173:7f938afb0447 20 countersProcess();
Diletant 173:7f938afb0447 21
Diletant 173:7f938afb0447 22 //Process dither ACS
Diletant 173:7f938afb0447 23 ditherProcess();
Diletant 173:7f938afb0447 24
Diletant 173:7f938afb0447 25 //Receive ADCs samples using SSP
Diletant 173:7f938afb0447 26 sspReceive();
Diletant 173:7f938afb0447 27 //Process ACS
Diletant 173:7f938afb0447 28 isacsProcess();
Diletant 173:7f938afb0447 29 sequencerProcess();
Diletant 173:7f938afb0447 30 plcsProcess();
Diletant 173:7f938afb0447 31 //Transmit DACs values using SSP
Diletant 173:7f938afb0447 32 sspTransmit(device.measurement.counter & 1);
Diletant 173:7f938afb0447 33
Diletant 173:7f938afb0447 34 //Update measurement cycle counter
Diletant 173:7f938afb0447 35 device.measurement.counter++;
Diletant 173:7f938afb0447 36 if (device.measurement.counter == device.measurement.length) device.measurement.counter = 0;
Diletant 173:7f938afb0447 37 //Reset dither 10mks resolution counter
Diletant 173:7f938afb0447 38 if (device.measurement.counter == 0) device.dither.pulse.state.counter = 0; //First dither half period
Diletant 173:7f938afb0447 39 if (device.measurement.counter == 16) device.dither.pulse.state.counter = 0;//Second dither half period
Diletant 156:e68ee0bcdcda 40 }
Diletant 156:e68ee0bcdcda 41
Diletant 173:7f938afb0447 42 //Regular cycle definitions and functions
Diletant 173:7f938afb0447 43 void DeviceInitRegularCycleDefaultSettings(void) {
Diletant 156:e68ee0bcdcda 44 }
Diletant 137:14a0c452cf32 45
Diletant 173:7f938afb0447 46 void DeviceInitRegularCycleState(void) {
Diletant 156:e68ee0bcdcda 47 device.regular.event1Hz = 0;
Diletant 156:e68ee0bcdcda 48 device.regular.event500Hz = 0;
Diletant 156:e68ee0bcdcda 49 device.regular.event1K = 0;
Diletant 156:e68ee0bcdcda 50 device.regular.event10K = 0;
Diletant 156:e68ee0bcdcda 51 device.regular.event100K = 0;
Diletant 156:e68ee0bcdcda 52 device.regular.time100K = 0;
Diletant 156:e68ee0bcdcda 53 device.regular.time10K = 0;
Diletant 156:e68ee0bcdcda 54 device.regular.time1K = 0;
Diletant 156:e68ee0bcdcda 55 device.regular.time500Hz = 0;
Diletant 156:e68ee0bcdcda 56 device.regular.time1Hz = 0;
Diletant 173:7f938afb0447 57 timersSetRegularPeriod(257);
Diletant 173:7f938afb0447 58 }
Diletant 173:7f938afb0447 59
Diletant 173:7f938afb0447 60 void DeviceStartRegularCycle(void) {
Diletant 173:7f938afb0447 61 DeviceStartRegularTimer();
Diletant 149:abbf7663d27d 62 }
Diletant 149:abbf7663d27d 63
Diletant 156:e68ee0bcdcda 64 void DeviceRegularEvent1Hz(void) {
Diletant 156:e68ee0bcdcda 65 if (device.regular.event1Hz) {
Diletant 156:e68ee0bcdcda 66 device.regular.event1Hz--;
Diletant 156:e68ee0bcdcda 67 device.regular.time1Hz++;
Diletant 156:e68ee0bcdcda 68
Diletant 161:efd949e8d536 69 DeviceLightUpDoCycle();
Diletant 156:e68ee0bcdcda 70 }
Diletant 156:e68ee0bcdcda 71 }
Diletant 156:e68ee0bcdcda 72
Diletant 156:e68ee0bcdcda 73 void DeviceRegularEvent500Hz(void) {
Diletant 156:e68ee0bcdcda 74 if (device.regular.event500Hz) {
Diletant 156:e68ee0bcdcda 75 device.regular.event500Hz--;
Diletant 156:e68ee0bcdcda 76 }
Diletant 156:e68ee0bcdcda 77 }
Diletant 156:e68ee0bcdcda 78
Diletant 156:e68ee0bcdcda 79 void DeviceRegularEvent1KHz(void) {
Diletant 156:e68ee0bcdcda 80 if (device.regular.event1K) {
Diletant 156:e68ee0bcdcda 81 device.regular.event1K--;
Diletant 156:e68ee0bcdcda 82 device.regular.time1K++;
Diletant 156:e68ee0bcdcda 83 device.regular.time500Hz++;
Diletant 156:e68ee0bcdcda 84 if (device.regular.time1K == 1000) {
Diletant 156:e68ee0bcdcda 85 device.regular.time1K = 0;
Diletant 156:e68ee0bcdcda 86 device.regular.event1Hz++;
Diletant 156:e68ee0bcdcda 87 }
Diletant 156:e68ee0bcdcda 88 if (device.regular.time500Hz == 2) {
Diletant 156:e68ee0bcdcda 89 device.regular.time500Hz = 0;
Diletant 156:e68ee0bcdcda 90 device.regular.event500Hz++;
Diletant 156:e68ee0bcdcda 91 }
Diletant 156:e68ee0bcdcda 92 }
Diletant 149:abbf7663d27d 93 }
Diletant 149:abbf7663d27d 94
Diletant 156:e68ee0bcdcda 95 void DeviceRegularEvent10KHz(void) {
Diletant 156:e68ee0bcdcda 96 if (device.regular.event10K) {
Diletant 156:e68ee0bcdcda 97 device.regular.event10K--;
Diletant 156:e68ee0bcdcda 98 device.regular.time10K++;
Diletant 156:e68ee0bcdcda 99 if (device.regular.time10K == 10){
Diletant 156:e68ee0bcdcda 100 device.regular.time10K = 0;
Diletant 156:e68ee0bcdcda 101 device.regular.event1K++;
Diletant 156:e68ee0bcdcda 102 }
Diletant 156:e68ee0bcdcda 103
Diletant 161:efd949e8d536 104 if ((device.user.response.type == RESPONSE_DELAYED) || (device.user.response.type == RESPONSE_PERIODIC)){
Diletant 161:efd949e8d536 105 device.user.response.counter += 100;
Diletant 161:efd949e8d536 106 if (device.user.response.counter > device.user.response.trigger) {
Diletant 161:efd949e8d536 107 device.user.response.triggered = 1;
Diletant 161:efd949e8d536 108 device.user.response.counter = 0;
Diletant 156:e68ee0bcdcda 109 }
Diletant 156:e68ee0bcdcda 110 }
Diletant 156:e68ee0bcdcda 111 }
Diletant 156:e68ee0bcdcda 112 }
Diletant 156:e68ee0bcdcda 113
Diletant 156:e68ee0bcdcda 114 void DeviceRegularEvent100KHz(void) {
Diletant 156:e68ee0bcdcda 115 if (device.regular.event100K) {
Diletant 156:e68ee0bcdcda 116 device.regular.event100K--;
Diletant 156:e68ee0bcdcda 117
Diletant 156:e68ee0bcdcda 118 device.regular.time100K++;
Diletant 156:e68ee0bcdcda 119 if (device.regular.time100K == 10) {
Diletant 156:e68ee0bcdcda 120 device.regular.time100K = 0;
Diletant 156:e68ee0bcdcda 121 device.regular.event10K++;
Diletant 156:e68ee0bcdcda 122 }
Diletant 156:e68ee0bcdcda 123
Diletant 173:7f938afb0447 124 ditherCycle(); //Set/reset vibro 1/2 pins
Diletant 156:e68ee0bcdcda 125 }
Diletant 156:e68ee0bcdcda 126 }
Diletant 156:e68ee0bcdcda 127
Diletant 156:e68ee0bcdcda 128 void DeviceRegularInterruptHandler(void) {
Diletant 156:e68ee0bcdcda 129 device.regular.event100K++;
Diletant 161:efd949e8d536 130 device.dither.pulse.state.counter++; //Dither 10 mks resolution counter
Diletant 156:e68ee0bcdcda 131 }
Diletant 156:e68ee0bcdcda 132
Diletant 173:7f938afb0447 133 //Device definitions and functions
Diletant 173:7f938afb0447 134 void DeviceInitDefaultSettings(void){
Diletant 173:7f938afb0447 135 device.user.address = 0;
Diletant 173:7f938afb0447 136
Diletant 173:7f938afb0447 137 //Init controller
Diletant 173:7f938afb0447 138 InitControllerDefaultSettings();
Diletant 173:7f938afb0447 139
Diletant 173:7f938afb0447 140 //Init units
Diletant 173:7f938afb0447 141 DeviceInitMeasurementCycleDefaultSettings();
Diletant 173:7f938afb0447 142 DeviceInitRegularCycleDefaultSettings();
Diletant 173:7f938afb0447 143 InitCountersDefaultSettings();
Diletant 173:7f938afb0447 144 InitDitherDefaultSettings();
Diletant 173:7f938afb0447 145 InitLightUpDefaultSettings();
Diletant 173:7f938afb0447 146 InitISACSDefaultSettings();
Diletant 173:7f938afb0447 147 InitSequencerDefaultSettings();
Diletant 173:7f938afb0447 148 InitPathLengthControlSystemDefaultSettings();
Diletant 173:7f938afb0447 149 InitUserProtocolDefaultSettings();
Diletant 173:7f938afb0447 150 }
Diletant 173:7f938afb0447 151
Diletant 173:7f938afb0447 152 void DeviceInitState(void) {
Diletant 173:7f938afb0447 153 //Init controller
Diletant 173:7f938afb0447 154 InitControllerState();
Diletant 173:7f938afb0447 155 //Init measurement cycle
Diletant 173:7f938afb0447 156 DeviceInitMeasurementCycleState();
Diletant 173:7f938afb0447 157 //Init regular cycle
Diletant 173:7f938afb0447 158 DeviceInitRegularCycleState();
Diletant 173:7f938afb0447 159 //Init counters
Diletant 173:7f938afb0447 160 InitCountersState();
Diletant 173:7f938afb0447 161 //Init dither
Diletant 173:7f938afb0447 162 InitDitherState();
Diletant 173:7f938afb0447 163 //Init light-up and back light unit
Diletant 173:7f938afb0447 164 InitLightUpState();
Diletant 173:7f938afb0447 165 //Init information signal amplitude control system
Diletant 173:7f938afb0447 166 InitISACSState();
Diletant 173:7f938afb0447 167 //Init sequencer
Diletant 173:7f938afb0447 168 InitSequencerState();
Diletant 173:7f938afb0447 169 //Init path length control system
Diletant 173:7f938afb0447 170 InitPathLengthControlSystemState();
Diletant 173:7f938afb0447 171 //Init host communication protocol
Diletant 173:7f938afb0447 172 InitUserProtocolState();
Diletant 173:7f938afb0447 173 }
Diletant 173:7f938afb0447 174
Diletant 173:7f938afb0447 175 void DeviceInit(void) {
Diletant 173:7f938afb0447 176 //Init system
Diletant 173:7f938afb0447 177 SystemInit1(); // Инициализация контроллера: установка тактовых частот
Diletant 173:7f938afb0447 178 SystemCoreClockUpdate1(); // расчет тактовой частоты процессора перед инициализацией UART - 100MHz
Diletant 173:7f938afb0447 179
Diletant 173:7f938afb0447 180 //Init hash table
Diletant 173:7f938afb0447 181 InitHashParamTable();
Diletant 173:7f938afb0447 182 InitHashFuncTable();
Diletant 173:7f938afb0447 183
Diletant 173:7f938afb0447 184 //Load default settings
Diletant 173:7f938afb0447 185 DeviceInitDefaultSettings();
Diletant 173:7f938afb0447 186
Diletant 173:7f938afb0447 187 //Load from flash - override default settings
Diletant 173:7f938afb0447 188 DeviceFlashReadAll();
Diletant 173:7f938afb0447 189
Diletant 173:7f938afb0447 190 //Init state from settings
Diletant 173:7f938afb0447 191 DeviceInitState();
Diletant 173:7f938afb0447 192 }
Diletant 173:7f938afb0447 193
Diletant 173:7f938afb0447 194 void DeviceStart(void) {
Diletant 173:7f938afb0447 195 DeviceStartController();
Diletant 173:7f938afb0447 196 DeviceStartRegularCycle();
Diletant 173:7f938afb0447 197 DeviceStartCounters();
Diletant 173:7f938afb0447 198 DeviceStartDither();
Diletant 173:7f938afb0447 199 DeviceStartISACS();
Diletant 173:7f938afb0447 200 DeviceStartLightUp();
Diletant 173:7f938afb0447 201 DeviceStartSequencer();
Diletant 173:7f938afb0447 202 DeviceStartPLCS();
Diletant 173:7f938afb0447 203 DeviceStartUserProtocol();
Diletant 173:7f938afb0447 204 }
Diletant 173:7f938afb0447 205
Diletant 149:abbf7663d27d 206 /*
Diletant 149:abbf7663d27d 207 int32_t FindByHash(uint32_t hash){
Diletant 149:abbf7663d27d 208 for (uint32_t i = 0; i < HASH_PARAM_COUNT; i++){
Diletant 149:abbf7663d27d 209 if (hashParamTable[i].hash == hash) return i;
Diletant 149:abbf7663d27d 210 }
Diletant 149:abbf7663d27d 211 return -1;
Diletant 149:abbf7663d27d 212 }
Diletant 161:efd949e8d536 213 */
Diletant 161:efd949e8d536 214
Diletant 161:efd949e8d536 215 void InitHashParamTable(void){
Diletant 167:bedc0a9d559a 216 hashParamTable[0].hash = 0x1049db13;
Diletant 167:bedc0a9d559a 217 hashParamTable[0].ref = &device.controller.uart[0].state.DLM;
Diletant 167:bedc0a9d559a 218 hashParamTable[0].size = sizeof(device.controller.uart[0].state.DLM);
Diletant 167:bedc0a9d559a 219 hashParamTable[1].hash = 0x112bb416;
Diletant 167:bedc0a9d559a 220 hashParamTable[1].ref = &device.plcs.feedback.settings.transfer.normalized[0];
Diletant 167:bedc0a9d559a 221 hashParamTable[1].size = sizeof(device.plcs.feedback.settings.transfer.normalized[0]);
Diletant 167:bedc0a9d559a 222 hashParamTable[2].hash = 0x11b36a70;
Diletant 167:bedc0a9d559a 223 hashParamTable[2].ref = &device.plcs.bias.settings.transfer.normalized[13];
Diletant 167:bedc0a9d559a 224 hashParamTable[2].size = sizeof(device.plcs.bias.settings.transfer.normalized[13]);
Diletant 167:bedc0a9d559a 225 hashParamTable[3].hash = 0x127b8c3c;
Diletant 167:bedc0a9d559a 226 hashParamTable[3].ref = &device.plcs.feedback.settings.transfer.normalized[14];
Diletant 167:bedc0a9d559a 227 hashParamTable[3].size = sizeof(device.plcs.feedback.settings.transfer.normalized[14]);
Diletant 173:7f938afb0447 228 hashParamTable[4].hash = 0x12e85f36;
Diletant 173:7f938afb0447 229 hashParamTable[4].ref = &device.dither.amplitude.settings.transfer.error[14];
Diletant 173:7f938afb0447 230 hashParamTable[4].size = sizeof(device.dither.amplitude.settings.transfer.error[14]);
Diletant 167:bedc0a9d559a 231 hashParamTable[5].hash = 0x12e884f8;
Diletant 167:bedc0a9d559a 232 hashParamTable[5].ref = &device.plcs.regulator.state.enabled;
Diletant 167:bedc0a9d559a 233 hashParamTable[5].size = sizeof(device.plcs.regulator.state.enabled);
Diletant 167:bedc0a9d559a 234 hashParamTable[6].hash = 0x1385cd15;
Diletant 167:bedc0a9d559a 235 hashParamTable[6].ref = &device.plcs.regulator.settings.transfer.correction[6];
Diletant 167:bedc0a9d559a 236 hashParamTable[6].size = sizeof(device.plcs.regulator.settings.transfer.correction[6]);
Diletant 173:7f938afb0447 237 hashParamTable[7].hash = 0x13d3f0df;
Diletant 173:7f938afb0447 238 hashParamTable[7].ref = &device.dither.noise.state.period;
Diletant 173:7f938afb0447 239 hashParamTable[7].size = sizeof(device.dither.noise.state.period);
Diletant 173:7f938afb0447 240 hashParamTable[8].hash = 0x14ca9b91;
Diletant 173:7f938afb0447 241 hashParamTable[8].ref = &device.controller.uart[0].state.LCR;
Diletant 173:7f938afb0447 242 hashParamTable[8].size = sizeof(device.controller.uart[0].state.LCR);
Diletant 173:7f938afb0447 243 hashParamTable[9].hash = 0x14d5dbbc;
Diletant 173:7f938afb0447 244 hashParamTable[9].ref = &device.dither.detector.settings.filter.factor[6];
Diletant 173:7f938afb0447 245 hashParamTable[9].size = sizeof(device.dither.detector.settings.filter.factor[6]);
Diletant 173:7f938afb0447 246 hashParamTable[10].hash = 0x158e497b;
Diletant 173:7f938afb0447 247 hashParamTable[10].ref = &device.plcs.reset.down.points;
Diletant 173:7f938afb0447 248 hashParamTable[10].size = sizeof(device.plcs.reset.down.points);
Diletant 173:7f938afb0447 249 hashParamTable[11].hash = 0x15bf85aa;
Diletant 173:7f938afb0447 250 hashParamTable[11].ref = &device.plcs.reset.up.voltage[9];
Diletant 173:7f938afb0447 251 hashParamTable[11].size = sizeof(device.plcs.reset.up.voltage[9]);
Diletant 173:7f938afb0447 252 hashParamTable[12].hash = 0x15d72e9e;
Diletant 173:7f938afb0447 253 hashParamTable[12].ref = &device.isacs.input.settings.transfer.voltage[14];
Diletant 173:7f938afb0447 254 hashParamTable[12].size = sizeof(device.isacs.input.settings.transfer.voltage[14]);
Diletant 173:7f938afb0447 255 hashParamTable[13].hash = 0x15e391e5;
Diletant 173:7f938afb0447 256 hashParamTable[13].ref = &device.dither.amplitude.settings.transfer.error[1];
Diletant 173:7f938afb0447 257 hashParamTable[13].size = sizeof(device.dither.amplitude.settings.transfer.error[1]);
Diletant 173:7f938afb0447 258 hashParamTable[14].hash = 0x15fdfe08;
Diletant 173:7f938afb0447 259 hashParamTable[14].ref = &device.plcs.reset.down.temperature[4];
Diletant 173:7f938afb0447 260 hashParamTable[14].size = sizeof(device.plcs.reset.down.temperature[4]);
Diletant 173:7f938afb0447 261 hashParamTable[15].hash = 0x162f9f2b;
Diletant 173:7f938afb0447 262 hashParamTable[15].ref = &device.plcs.output.settings.transfer.code[0];
Diletant 173:7f938afb0447 263 hashParamTable[15].size = sizeof(device.plcs.output.settings.transfer.code[0]);
Diletant 173:7f938afb0447 264 hashParamTable[16].hash = 0x1668a562;
Diletant 173:7f938afb0447 265 hashParamTable[16].ref = &device.plcs.reset.down.duration[8];
Diletant 173:7f938afb0447 266 hashParamTable[16].size = sizeof(device.plcs.reset.down.duration[8]);
Diletant 173:7f938afb0447 267 hashParamTable[17].hash = 0x16d42bd;
Diletant 173:7f938afb0447 268 hashParamTable[17].ref = &device.isacs.output.settings.transfer.voltage[11];
Diletant 173:7f938afb0447 269 hashParamTable[17].size = sizeof(device.isacs.output.settings.transfer.voltage[11]);
Diletant 173:7f938afb0447 270 hashParamTable[18].hash = 0x16ed2d61;
Diletant 173:7f938afb0447 271 hashParamTable[18].ref = &device.dither.frequency.settings.transfer.correction[11];
Diletant 173:7f938afb0447 272 hashParamTable[18].size = sizeof(device.dither.frequency.settings.transfer.correction[11]);
Diletant 173:7f938afb0447 273 hashParamTable[19].hash = 0x177a9e0f;
Diletant 173:7f938afb0447 274 hashParamTable[19].ref = &device.sequencer.output.analog.settings.transfer.code[8];
Diletant 173:7f938afb0447 275 hashParamTable[19].size = sizeof(device.sequencer.output.analog.settings.transfer.code[8]);
Diletant 173:7f938afb0447 276 hashParamTable[20].hash = 0x17bcf2b9;
Diletant 173:7f938afb0447 277 hashParamTable[20].ref = &device.controller.SSP.in[4];
Diletant 173:7f938afb0447 278 hashParamTable[20].size = sizeof(device.controller.SSP.in[4]);
Diletant 173:7f938afb0447 279 hashParamTable[21].hash = 0x183f50e6;
Diletant 173:7f938afb0447 280 hashParamTable[21].ref = &device.plcs.reference.settings.sequencer;
Diletant 173:7f938afb0447 281 hashParamTable[21].size = sizeof(device.plcs.reference.settings.sequencer);
Diletant 173:7f938afb0447 282 hashParamTable[22].hash = 0x187673fc;
Diletant 173:7f938afb0447 283 hashParamTable[22].ref = &device.isacs.output.settings.transfer.voltage[10];
Diletant 173:7f938afb0447 284 hashParamTable[22].size = sizeof(device.isacs.output.settings.transfer.voltage[10]);
Diletant 173:7f938afb0447 285 hashParamTable[23].hash = 0x1894851a;
Diletant 173:7f938afb0447 286 hashParamTable[23].ref = &device.isacs.input.settings.transfer.voltage[8];
Diletant 173:7f938afb0447 287 hashParamTable[23].size = sizeof(device.isacs.input.settings.transfer.voltage[8]);
Diletant 173:7f938afb0447 288 hashParamTable[24].hash = 0x18c9d3e9;
Diletant 173:7f938afb0447 289 hashParamTable[24].ref = &device.controller.I2C.state.trigger;
Diletant 173:7f938afb0447 290 hashParamTable[24].size = sizeof(device.controller.I2C.state.trigger);
Diletant 173:7f938afb0447 291 hashParamTable[25].hash = 0x18e45a83;
Diletant 173:7f938afb0447 292 hashParamTable[25].ref = &device.plcs.reset.up.temperature[1];
Diletant 173:7f938afb0447 293 hashParamTable[25].size = sizeof(device.plcs.reset.up.temperature[1]);
Diletant 173:7f938afb0447 294 hashParamTable[26].hash = 0x18fb45b;
Diletant 173:7f938afb0447 295 hashParamTable[26].ref = &device.isacs.input.settings.transfer.voltage[9];
Diletant 173:7f938afb0447 296 hashParamTable[26].size = sizeof(device.isacs.input.settings.transfer.voltage[9]);
Diletant 173:7f938afb0447 297 hashParamTable[27].hash = 0x18fd0ab4;
Diletant 173:7f938afb0447 298 hashParamTable[27].ref = &device.plcs.feedback.settings.transfer.raw[0];
Diletant 173:7f938afb0447 299 hashParamTable[27].size = sizeof(device.plcs.feedback.settings.transfer.raw[0]);
Diletant 173:7f938afb0447 300 hashParamTable[28].hash = 0x18ff0dee;
Diletant 173:7f938afb0447 301 hashParamTable[28].ref = &device.plcs.bias.settings.transfer.raw[0];
Diletant 173:7f938afb0447 302 hashParamTable[28].size = sizeof(device.plcs.bias.settings.transfer.raw[0]);
Diletant 173:7f938afb0447 303 hashParamTable[29].hash = 0x195b9d0a;
Diletant 173:7f938afb0447 304 hashParamTable[29].ref = &device.dither.amplitude.state.enabled;
Diletant 173:7f938afb0447 305 hashParamTable[29].size = sizeof(device.dither.amplitude.state.enabled);
Diletant 173:7f938afb0447 306 hashParamTable[30].hash = 0x195d1e47;
Diletant 173:7f938afb0447 307 hashParamTable[30].ref = &device.controller.uart[0].state.FCR;
Diletant 173:7f938afb0447 308 hashParamTable[30].size = sizeof(device.controller.uart[0].state.FCR);
Diletant 173:7f938afb0447 309 hashParamTable[31].hash = 0x19a3142e;
Diletant 173:7f938afb0447 310 hashParamTable[31].ref = &device.dither.detector.settings.transfer.raw[3];
Diletant 173:7f938afb0447 311 hashParamTable[31].size = sizeof(device.dither.detector.settings.transfer.raw[3]);
Diletant 173:7f938afb0447 312 hashParamTable[32].hash = 0x1a3e671e;
Diletant 173:7f938afb0447 313 hashParamTable[32].ref = &device.dither.noise.state.counter;
Diletant 173:7f938afb0447 314 hashParamTable[32].size = sizeof(device.dither.noise.state.counter);
Diletant 173:7f938afb0447 315 hashParamTable[33].hash = 0x1ad3d89e;
Diletant 173:7f938afb0447 316 hashParamTable[33].ref = &device.dither.detector.settings.transfer.points;
Diletant 173:7f938afb0447 317 hashParamTable[33].size = sizeof(device.dither.detector.settings.transfer.points);
Diletant 173:7f938afb0447 318 hashParamTable[34].hash = 0x1af49e5f;
Diletant 173:7f938afb0447 319 hashParamTable[34].ref = &device.plcs.regulator.settings.transfer.error[10];
Diletant 173:7f938afb0447 320 hashParamTable[34].size = sizeof(device.plcs.regulator.settings.transfer.error[10]);
Diletant 173:7f938afb0447 321 hashParamTable[35].hash = 0x1b0dd841;
Diletant 173:7f938afb0447 322 hashParamTable[35].ref = &device.isacs.input.settings.transfer.code[0];
Diletant 173:7f938afb0447 323 hashParamTable[35].size = sizeof(device.isacs.input.settings.transfer.code[0]);
Diletant 173:7f938afb0447 324 hashParamTable[36].hash = 0x1b179781;
Diletant 173:7f938afb0447 325 hashParamTable[36].ref = &device.isacs.output.settings.transfer.voltage[0];
Diletant 173:7f938afb0447 326 hashParamTable[36].size = sizeof(device.isacs.output.settings.transfer.voltage[0]);
Diletant 173:7f938afb0447 327 hashParamTable[37].hash = 0x1b1f5569;
Diletant 173:7f938afb0447 328 hashParamTable[37].ref = &device.sequencer.sampler.state.position[1];
Diletant 173:7f938afb0447 329 hashParamTable[37].size = sizeof(device.sequencer.sampler.state.position[1]);
Diletant 173:7f938afb0447 330 hashParamTable[38].hash = 0x1b2739a8;
Diletant 173:7f938afb0447 331 hashParamTable[38].ref = &device.dither.frequency.settings.transfer.error[12];
Diletant 173:7f938afb0447 332 hashParamTable[38].size = sizeof(device.dither.frequency.settings.transfer.error[12]);
Diletant 173:7f938afb0447 333 hashParamTable[39].hash = 0x1b75982e;
Diletant 173:7f938afb0447 334 hashParamTable[39].ref = &device.plcs.reset.up.duration[8];
Diletant 173:7f938afb0447 335 hashParamTable[39].size = sizeof(device.plcs.reset.up.duration[8]);
Diletant 173:7f938afb0447 336 hashParamTable[40].hash = 0x1c0aa7e8;
Diletant 173:7f938afb0447 337 hashParamTable[40].ref = &device.dither.detector.settings.filter.factor[15];
Diletant 173:7f938afb0447 338 hashParamTable[40].size = sizeof(device.dither.detector.settings.filter.factor[15]);
Diletant 173:7f938afb0447 339 hashParamTable[41].hash = 0x1c4e6380;
Diletant 173:7f938afb0447 340 hashParamTable[41].ref = &device.plcs.output.settings.transfer.code[12];
Diletant 173:7f938afb0447 341 hashParamTable[41].size = sizeof(device.plcs.output.settings.transfer.code[12]);
Diletant 173:7f938afb0447 342 hashParamTable[42].hash = 0x1c69e16a;
Diletant 173:7f938afb0447 343 hashParamTable[42].ref = &device.sequencer.output.analog.settings.transfer.code[10];
Diletant 173:7f938afb0447 344 hashParamTable[42].size = sizeof(device.sequencer.output.analog.settings.transfer.code[10]);
Diletant 173:7f938afb0447 345 hashParamTable[43].hash = 0x1d42170c;
Diletant 173:7f938afb0447 346 hashParamTable[43].ref = &device.dither.frequency.settings.min;
Diletant 173:7f938afb0447 347 hashParamTable[43].size = sizeof(device.dither.frequency.settings.min);
Diletant 173:7f938afb0447 348 hashParamTable[44].hash = 0x1d5d8c36;
Diletant 173:7f938afb0447 349 hashParamTable[44].ref = &device.plcs.reset.down.duration[12];
Diletant 173:7f938afb0447 350 hashParamTable[44].size = sizeof(device.plcs.reset.down.duration[12]);
Diletant 173:7f938afb0447 351 hashParamTable[45].hash = 0x1d922ce1;
Diletant 173:7f938afb0447 352 hashParamTable[45].ref = &device.sequencer.sampler.settings.enabled;
Diletant 173:7f938afb0447 353 hashParamTable[45].size = sizeof(device.sequencer.sampler.settings.enabled);
Diletant 173:7f938afb0447 354 hashParamTable[46].hash = 0x1e281aa4;
Diletant 173:7f938afb0447 355 hashParamTable[46].ref = &device.dither.frequency.state.frequency;
Diletant 173:7f938afb0447 356 hashParamTable[46].size = sizeof(device.dither.frequency.state.frequency);
Diletant 173:7f938afb0447 357 hashParamTable[47].hash = 0x1e43caf;
Diletant 173:7f938afb0447 358 hashParamTable[47].ref = &device.plcs.bias.settings.transfer.raw[1];
Diletant 173:7f938afb0447 359 hashParamTable[47].size = sizeof(device.plcs.bias.settings.transfer.raw[1]);
Diletant 173:7f938afb0447 360 hashParamTable[48].hash = 0x1e4c19b1;
Diletant 173:7f938afb0447 361 hashParamTable[48].ref = &device.dither.detector.settings.filter.factor[25];
Diletant 173:7f938afb0447 362 hashParamTable[48].size = sizeof(device.dither.detector.settings.filter.factor[25]);
Diletant 173:7f938afb0447 363 hashParamTable[49].hash = 0x1e63bf5;
Diletant 173:7f938afb0447 364 hashParamTable[49].ref = &device.plcs.feedback.settings.transfer.raw[1];
Diletant 173:7f938afb0447 365 hashParamTable[49].size = sizeof(device.plcs.feedback.settings.transfer.raw[1]);
Diletant 173:7f938afb0447 366 hashParamTable[50].hash = 0x1ea9caa2;
Diletant 173:7f938afb0447 367 hashParamTable[50].ref = &device.plcs.reset.state.voltage;
Diletant 173:7f938afb0447 368 hashParamTable[50].size = sizeof(device.plcs.reset.state.voltage);
Diletant 173:7f938afb0447 369 hashParamTable[51].hash = 0x1eb95b78;
Diletant 173:7f938afb0447 370 hashParamTable[51].ref = &device.controller.I2C.state.position;
Diletant 173:7f938afb0447 371 hashParamTable[51].size = sizeof(device.controller.I2C.state.position);
Diletant 173:7f938afb0447 372 hashParamTable[52].hash = 0x1f99ad84;
Diletant 173:7f938afb0447 373 hashParamTable[52].ref = &device.sensor.settings.id;
Diletant 173:7f938afb0447 374 hashParamTable[52].size = sizeof(device.sensor.settings.id);
Diletant 173:7f938afb0447 375 hashParamTable[53].hash = 0x1fa53157;
Diletant 173:7f938afb0447 376 hashParamTable[53].ref = &device.dither.amplitude.settings.transfer.correction[7];
Diletant 173:7f938afb0447 377 hashParamTable[53].size = sizeof(device.dither.amplitude.settings.transfer.correction[7]);
Diletant 173:7f938afb0447 378 hashParamTable[54].hash = 0x1fd038c3;
Diletant 173:7f938afb0447 379 hashParamTable[54].ref = &device.controller.I2C.state.buffer[4];
Diletant 173:7f938afb0447 380 hashParamTable[54].size = sizeof(device.controller.I2C.state.buffer[4]);
Diletant 173:7f938afb0447 381 hashParamTable[55].hash = 0x1ff6bc2;
Diletant 173:7f938afb0447 382 hashParamTable[55].ref = &device.plcs.reset.up.temperature[0];
Diletant 173:7f938afb0447 383 hashParamTable[55].size = sizeof(device.plcs.reset.up.temperature[0]);
Diletant 173:7f938afb0447 384 hashParamTable[56].hash = 0x2005a050;
Diletant 173:7f938afb0447 385 hashParamTable[56].ref = &device.dither.frequency.settings.scale;
Diletant 173:7f938afb0447 386 hashParamTable[56].size = sizeof(device.dither.frequency.settings.scale);
Diletant 173:7f938afb0447 387 hashParamTable[57].hash = 0x2046428;
Diletant 173:7f938afb0447 388 hashParamTable[57].ref = &device.sequencer.sampler.state.position[0];
Diletant 173:7f938afb0447 389 hashParamTable[57].size = sizeof(device.sequencer.sampler.state.position[0]);
Diletant 173:7f938afb0447 390 hashParamTable[58].hash = 0x2089da7e;
Diletant 173:7f938afb0447 391 hashParamTable[58].ref = &device.plcs.bias.settings.transfer.normalized[9];
Diletant 173:7f938afb0447 392 hashParamTable[58].size = sizeof(device.plcs.bias.settings.transfer.normalized[9]);
Diletant 173:7f938afb0447 393 hashParamTable[59].hash = 0x20ca6c0;
Diletant 173:7f938afb0447 394 hashParamTable[59].ref = &device.isacs.output.settings.transfer.voltage[1];
Diletant 173:7f938afb0447 395 hashParamTable[59].size = sizeof(device.isacs.output.settings.transfer.voltage[1]);
Diletant 173:7f938afb0447 396 hashParamTable[60].hash = 0x212c331a;
Diletant 173:7f938afb0447 397 hashParamTable[60].ref = &device.dither.detector.settings.transfer.raw[15];
Diletant 173:7f938afb0447 398 hashParamTable[60].size = sizeof(device.dither.detector.settings.transfer.raw[15]);
Diletant 173:7f938afb0447 399 hashParamTable[61].hash = 0x214f2855;
Diletant 173:7f938afb0447 400 hashParamTable[61].ref = &device.dither.frequency.settings.max;
Diletant 173:7f938afb0447 401 hashParamTable[61].size = sizeof(device.dither.frequency.settings.max);
Diletant 173:7f938afb0447 402 hashParamTable[62].hash = 0x216e900;
Diletant 173:7f938afb0447 403 hashParamTable[62].ref = &device.isacs.input.settings.transfer.code[1];
Diletant 173:7f938afb0447 404 hashParamTable[62].size = sizeof(device.isacs.input.settings.transfer.code[1]);
Diletant 173:7f938afb0447 405 hashParamTable[63].hash = 0x21ad307b;
Diletant 173:7f938afb0447 406 hashParamTable[63].ref = &device.dither.detector.settings.transfer.restored[15];
Diletant 173:7f938afb0447 407 hashParamTable[63].size = sizeof(device.dither.detector.settings.transfer.restored[15]);
Diletant 173:7f938afb0447 408 hashParamTable[64].hash = 0x21b3af97;
Diletant 173:7f938afb0447 409 hashParamTable[64].ref = &device.plcs.regulator.settings.transfer.correction[4];
Diletant 173:7f938afb0447 410 hashParamTable[64].size = sizeof(device.plcs.regulator.settings.transfer.correction[4]);
Diletant 173:7f938afb0447 411 hashParamTable[65].hash = 0x221dec1a;
Diletant 173:7f938afb0447 412 hashParamTable[65].ref = &device.dither.amplitude.state.correction;
Diletant 173:7f938afb0447 413 hashParamTable[65].size = sizeof(device.dither.amplitude.state.correction);
Diletant 173:7f938afb0447 414 hashParamTable[66].hash = 0x2297782a;
Diletant 173:7f938afb0447 415 hashParamTable[66].ref = &device.dither.amplitude.settings.scale;
Diletant 173:7f938afb0447 416 hashParamTable[66].size = sizeof(device.dither.amplitude.settings.scale);
Diletant 173:7f938afb0447 417 hashParamTable[67].hash = 0x231dd694;
Diletant 173:7f938afb0447 418 hashParamTable[67].ref = &device.plcs.feedback.settings.transfer.normalized[2];
Diletant 173:7f938afb0447 419 hashParamTable[67].size = sizeof(device.plcs.feedback.settings.transfer.normalized[2]);
Diletant 173:7f938afb0447 420 hashParamTable[68].hash = 0x238508f2;
Diletant 173:7f938afb0447 421 hashParamTable[68].ref = &device.plcs.bias.settings.transfer.normalized[11];
Diletant 173:7f938afb0447 422 hashParamTable[68].size = sizeof(device.plcs.bias.settings.transfer.normalized[11]);
Diletant 173:7f938afb0447 423 hashParamTable[69].hash = 0x23b95340;
Diletant 173:7f938afb0447 424 hashParamTable[69].ref = &device.sequencer.output.analog.settings.transfer.voltage[9];
Diletant 173:7f938afb0447 425 hashParamTable[69].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[9]);
Diletant 173:7f938afb0447 426 hashParamTable[70].hash = 0x23c08e9;
Diletant 173:7f938afb0447 427 hashParamTable[70].ref = &device.dither.frequency.settings.transfer.error[13];
Diletant 173:7f938afb0447 428 hashParamTable[70].size = sizeof(device.dither.frequency.settings.transfer.error[13]);
Diletant 173:7f938afb0447 429 hashParamTable[71].hash = 0x2419fda9;
Diletant 173:7f938afb0447 430 hashParamTable[71].ref = &device.plcs.output.settings.transfer.code[2];
Diletant 173:7f938afb0447 431 hashParamTable[71].size = sizeof(device.plcs.output.settings.transfer.code[2]);
Diletant 173:7f938afb0447 432 hashParamTable[72].hash = 0x2481a096;
Diletant 173:7f938afb0447 433 hashParamTable[72].ref = &device.isacs.regulator.settings.regular.scale;
Diletant 173:7f938afb0447 434 hashParamTable[72].size = sizeof(device.isacs.regulator.settings.regular.scale);
Diletant 173:7f938afb0447 435 hashParamTable[73].hash = 0x24db4fe3;
Diletant 173:7f938afb0447 436 hashParamTable[73].ref = &device.dither.frequency.settings.transfer.correction[13];
Diletant 173:7f938afb0447 437 hashParamTable[73].size = sizeof(device.dither.frequency.settings.transfer.correction[13]);
Diletant 173:7f938afb0447 438 hashParamTable[74].hash = 0x25ab850b;
Diletant 173:7f938afb0447 439 hashParamTable[74].ref = &device.plcs.regulator.settings.transfer.error[9];
Diletant 173:7f938afb0447 440 hashParamTable[74].size = sizeof(device.plcs.regulator.settings.transfer.error[9]);
Diletant 173:7f938afb0447 441 hashParamTable[75].hash = 0x267b13b1;
Diletant 173:7f938afb0447 442 hashParamTable[75].ref = &device.dither.noise.settings.range;
Diletant 173:7f938afb0447 443 hashParamTable[75].size = sizeof(device.dither.noise.settings.range);
Diletant 173:7f938afb0447 444 hashParamTable[76].hash = 0x26e3b93e;
Diletant 173:7f938afb0447 445 hashParamTable[76].ref = &device.dither.detector.settings.filter.factor[4];
Diletant 173:7f938afb0447 446 hashParamTable[76].size = sizeof(device.dither.detector.settings.filter.factor[4]);
Diletant 173:7f938afb0447 447 hashParamTable[77].hash = 0x26ea96f;
Diletant 173:7f938afb0447 448 hashParamTable[77].ref = &device.plcs.reset.up.duration[9];
Diletant 173:7f938afb0447 449 hashParamTable[77].size = sizeof(device.plcs.reset.up.duration[9]);
Diletant 173:7f938afb0447 450 hashParamTable[78].hash = 0x27cb9c8a;
Diletant 173:7f938afb0447 451 hashParamTable[78].ref = &device.plcs.reset.down.temperature[6];
Diletant 173:7f938afb0447 452 hashParamTable[78].size = sizeof(device.plcs.reset.down.temperature[6]);
Diletant 173:7f938afb0447 453 hashParamTable[79].hash = 0x27d5f367;
Diletant 173:7f938afb0447 454 hashParamTable[79].ref = &device.dither.amplitude.settings.transfer.error[3];
Diletant 173:7f938afb0447 455 hashParamTable[79].size = sizeof(device.dither.amplitude.settings.transfer.error[3]);
Diletant 173:7f938afb0447 456 hashParamTable[80].hash = 0x27e577b1;
Diletant 173:7f938afb0447 457 hashParamTable[80].ref = &device.dither.frequency.settings.enabled;
Diletant 173:7f938afb0447 458 hashParamTable[80].size = sizeof(device.dither.frequency.settings.enabled);
Diletant 173:7f938afb0447 459 hashParamTable[81].hash = 0x2837dd6d;
Diletant 173:7f938afb0447 460 hashParamTable[81].ref = &device.sequencer.sampler.settings.sequence[18];
Diletant 173:7f938afb0447 461 hashParamTable[81].size = sizeof(device.sequencer.sampler.settings.sequence[18]);
Diletant 173:7f938afb0447 462 hashParamTable[82].hash = 0x28c2fcdd;
Diletant 173:7f938afb0447 463 hashParamTable[82].ref = &device.plcs.regulator.settings.transfer.error[12];
Diletant 173:7f938afb0447 464 hashParamTable[82].size = sizeof(device.plcs.regulator.settings.transfer.error[12]);
Diletant 173:7f938afb0447 465 hashParamTable[83].hash = 0x29115b2a;
Diletant 173:7f938afb0447 466 hashParamTable[83].ref = &device.dither.frequency.settings.transfer.error[10];
Diletant 173:7f938afb0447 467 hashParamTable[83].size = sizeof(device.dither.frequency.settings.transfer.error[10]);
Diletant 173:7f938afb0447 468 hashParamTable[84].hash = 0x2921f503;
Diletant 173:7f938afb0447 469 hashParamTable[84].ref = &device.isacs.output.settings.transfer.voltage[2];
Diletant 173:7f938afb0447 470 hashParamTable[84].size = sizeof(device.isacs.output.settings.transfer.voltage[2]);
Diletant 173:7f938afb0447 471 hashParamTable[85].hash = 0x293bbac3;
Diletant 173:7f938afb0447 472 hashParamTable[85].ref = &device.isacs.input.settings.transfer.code[2];
Diletant 173:7f938afb0447 473 hashParamTable[85].size = sizeof(device.isacs.input.settings.transfer.code[2]);
Diletant 173:7f938afb0447 474 hashParamTable[86].hash = 0x2944ed54;
Diletant 173:7f938afb0447 475 hashParamTable[86].ref = &device.sequencer.sampler.settings.sequence[8];
Diletant 173:7f938afb0447 476 hashParamTable[86].size = sizeof(device.sequencer.sampler.settings.sequence[8]);
Diletant 173:7f938afb0447 477 hashParamTable[87].hash = 0x296ccefa;
Diletant 173:7f938afb0447 478 hashParamTable[87].ref = &device.plcs.feedback.settings.output;
Diletant 173:7f938afb0447 479 hashParamTable[87].size = sizeof(device.plcs.feedback.settings.output);
Diletant 173:7f938afb0447 480 hashParamTable[88].hash = 0x2a1b86c5;
Diletant 173:7f938afb0447 481 hashParamTable[88].ref = &device.dither.amplitude.settings.transfer.correction[15];
Diletant 173:7f938afb0447 482 hashParamTable[88].size = sizeof(device.dither.amplitude.settings.transfer.correction[15]);
Diletant 173:7f938afb0447 483 hashParamTable[89].hash = 0x2a40117e;
Diletant 173:7f938afb0447 484 hashParamTable[89].ref = &device.isacs.output.settings.transfer.voltage[12];
Diletant 173:7f938afb0447 485 hashParamTable[89].size = sizeof(device.isacs.output.settings.transfer.voltage[12]);
Diletant 173:7f938afb0447 486 hashParamTable[90].hash = 0x2a716334;
Diletant 173:7f938afb0447 487 hashParamTable[90].ref = &device.sequencer.sampler.settings.sequence[28];
Diletant 173:7f938afb0447 488 hashParamTable[90].size = sizeof(device.sequencer.sampler.settings.sequence[28]);
Diletant 173:7f938afb0447 489 hashParamTable[91].hash = 0x2aaa9846;
Diletant 173:7f938afb0447 490 hashParamTable[91].ref = &device.plcs.feedback.settings.transfer.raw[14];
Diletant 173:7f938afb0447 491 hashParamTable[91].size = sizeof(device.plcs.feedback.settings.transfer.raw[14]);
Diletant 173:7f938afb0447 492 hashParamTable[92].hash = 0x2ac96f6c;
Diletant 173:7f938afb0447 493 hashParamTable[92].ref = &device.plcs.bias.settings.transfer.raw[2];
Diletant 173:7f938afb0447 494 hashParamTable[92].size = sizeof(device.plcs.bias.settings.transfer.raw[2]);
Diletant 173:7f938afb0447 495 hashParamTable[93].hash = 0x2acb6836;
Diletant 173:7f938afb0447 496 hashParamTable[93].ref = &device.plcs.feedback.settings.transfer.raw[2];
Diletant 173:7f938afb0447 497 hashParamTable[93].size = sizeof(device.plcs.feedback.settings.transfer.raw[2]);
Diletant 173:7f938afb0447 498 hashParamTable[94].hash = 0x2ad23801;
Diletant 173:7f938afb0447 499 hashParamTable[94].ref = &device.plcs.reset.up.temperature[3];
Diletant 173:7f938afb0447 500 hashParamTable[94].size = sizeof(device.plcs.reset.up.temperature[3]);
Diletant 173:7f938afb0447 501 hashParamTable[95].hash = 0x2aeb3625;
Diletant 173:7f938afb0447 502 hashParamTable[95].ref = &device.isacs.output.settings.transfer.code[9];
Diletant 173:7f938afb0447 503 hashParamTable[95].size = sizeof(device.isacs.output.settings.transfer.code[9]);
Diletant 173:7f938afb0447 504 hashParamTable[96].hash = 0x2b9576ac;
Diletant 173:7f938afb0447 505 hashParamTable[96].ref = &device.dither.detector.settings.transfer.raw[1];
Diletant 173:7f938afb0447 506 hashParamTable[96].size = sizeof(device.dither.detector.settings.transfer.raw[1]);
Diletant 173:7f938afb0447 507 hashParamTable[97].hash = 0x2bb30903;
Diletant 173:7f938afb0447 508 hashParamTable[97].ref = &device.sequencer.sampler.settings.sequence[38];
Diletant 173:7f938afb0447 509 hashParamTable[97].size = sizeof(device.sequencer.sampler.settings.sequence[38]);
Diletant 173:7f938afb0447 510 hashParamTable[98].hash = 0x2c7a7b33;
Diletant 173:7f938afb0447 511 hashParamTable[98].ref = &device.dither.detector.settings.filter.factor[27];
Diletant 173:7f938afb0447 512 hashParamTable[98].size = sizeof(device.dither.detector.settings.filter.factor[27]);
Diletant 173:7f938afb0447 513 hashParamTable[99].hash = 0x2d2d0382;
Diletant 173:7f938afb0447 514 hashParamTable[99].ref = &device.sequencer.output.logic.state.level;
Diletant 173:7f938afb0447 515 hashParamTable[99].size = sizeof(device.sequencer.output.logic.state.level);
Diletant 173:7f938afb0447 516 hashParamTable[100].hash = 0x2d7b0a77;
Diletant 173:7f938afb0447 517 hashParamTable[100].ref = &device.plcs.reset.up.duration[15];
Diletant 173:7f938afb0447 518 hashParamTable[100].size = sizeof(device.plcs.reset.up.duration[15]);
Diletant 173:7f938afb0447 519 hashParamTable[101].hash = 0x2d9353d5;
Diletant 173:7f938afb0447 520 hashParamTable[101].ref = &device.dither.amplitude.settings.transfer.correction[5];
Diletant 173:7f938afb0447 521 hashParamTable[101].size = sizeof(device.dither.amplitude.settings.transfer.correction[5]);
Diletant 173:7f938afb0447 522 hashParamTable[102].hash = 0x2e3cc56a;
Diletant 173:7f938afb0447 523 hashParamTable[102].ref = &device.dither.detector.settings.filter.factor[17];
Diletant 173:7f938afb0447 524 hashParamTable[102].size = sizeof(device.dither.detector.settings.filter.factor[17]);
Diletant 173:7f938afb0447 525 hashParamTable[103].hash = 0x2e5f83e8;
Diletant 173:7f938afb0447 526 hashParamTable[103].ref = &device.sequencer.output.analog.settings.transfer.code[12];
Diletant 173:7f938afb0447 527 hashParamTable[103].size = sizeof(device.sequencer.output.analog.settings.transfer.code[12]);
Diletant 173:7f938afb0447 528 hashParamTable[104].hash = 0x2e780102;
Diletant 173:7f938afb0447 529 hashParamTable[104].ref = &device.plcs.output.settings.transfer.code[10];
Diletant 173:7f938afb0447 530 hashParamTable[104].size = sizeof(device.plcs.output.settings.transfer.code[10]);
Diletant 173:7f938afb0447 531 hashParamTable[105].hash = 0x2e976286;
Diletant 173:7f938afb0447 532 hashParamTable[105].ref = &device.plcs.output.settings.transfer.voltage[9];
Diletant 173:7f938afb0447 533 hashParamTable[105].size = sizeof(device.plcs.output.settings.transfer.voltage[9]);
Diletant 173:7f938afb0447 534 hashParamTable[106].hash = 0x2efc1f86;
Diletant 173:7f938afb0447 535 hashParamTable[106].ref = &device.sequencer.sampler.settings.sequence[48];
Diletant 173:7f938afb0447 536 hashParamTable[106].size = sizeof(device.sequencer.sampler.settings.sequence[48]);
Diletant 173:7f938afb0447 537 hashParamTable[107].hash = 0x2f3e75b1;
Diletant 173:7f938afb0447 538 hashParamTable[107].ref = &device.sequencer.sampler.settings.sequence[58];
Diletant 173:7f938afb0447 539 hashParamTable[107].size = sizeof(device.sequencer.sampler.settings.sequence[58]);
Diletant 173:7f938afb0447 540 hashParamTable[108].hash = 0x2f6beeb4;
Diletant 173:7f938afb0447 541 hashParamTable[108].ref = &device.plcs.reset.down.duration[10];
Diletant 173:7f938afb0447 542 hashParamTable[108].size = sizeof(device.plcs.reset.down.duration[10]);
Diletant 173:7f938afb0447 543 hashParamTable[109].hash = 0x300a6a6b;
Diletant 173:7f938afb0447 544 hashParamTable[109].ref = &device.dither.frequency.settings.transfer.error[11];
Diletant 173:7f938afb0447 545 hashParamTable[109].size = sizeof(device.dither.frequency.settings.transfer.error[11]);
Diletant 173:7f938afb0447 546 hashParamTable[110].hash = 0x30208b82;
Diletant 173:7f938afb0447 547 hashParamTable[110].ref = &device.isacs.input.settings.transfer.code[3];
Diletant 173:7f938afb0447 548 hashParamTable[110].size = sizeof(device.isacs.input.settings.transfer.code[3]);
Diletant 173:7f938afb0447 549 hashParamTable[111].hash = 0x303ac442;
Diletant 173:7f938afb0447 550 hashParamTable[111].ref = &device.isacs.output.settings.transfer.voltage[3];
Diletant 173:7f938afb0447 551 hashParamTable[111].size = sizeof(device.isacs.output.settings.transfer.voltage[3]);
Diletant 173:7f938afb0447 552 hashParamTable[112].hash = 0x305fdc15;
Diletant 173:7f938afb0447 553 hashParamTable[112].ref = &device.sequencer.sampler.settings.sequence[9];
Diletant 173:7f938afb0447 554 hashParamTable[112].size = sizeof(device.sequencer.sampler.settings.sequence[9]);
Diletant 173:7f938afb0447 555 hashParamTable[113].hash = 0x30a095c7;
Diletant 173:7f938afb0447 556 hashParamTable[113].ref = &device.plcs.feedback.settings.transfer.points;
Diletant 173:7f938afb0447 557 hashParamTable[113].size = sizeof(device.plcs.feedback.settings.transfer.points);
Diletant 173:7f938afb0447 558 hashParamTable[114].hash = 0x30a2929d;
Diletant 173:7f938afb0447 559 hashParamTable[114].ref = &device.plcs.bias.settings.transfer.points;
Diletant 173:7f938afb0447 560 hashParamTable[114].size = sizeof(device.plcs.bias.settings.transfer.points);
Diletant 173:7f938afb0447 561 hashParamTable[115].hash = 0x312cec2c;
Diletant 173:7f938afb0447 562 hashParamTable[115].ref = &device.sequencer.sampler.settings.sequence[19];
Diletant 173:7f938afb0447 563 hashParamTable[115].size = sizeof(device.sequencer.sampler.settings.sequence[19]);
Diletant 173:7f938afb0447 564 hashParamTable[116].hash = 0x31d9cd9c;
Diletant 173:7f938afb0447 565 hashParamTable[116].ref = &device.plcs.regulator.settings.transfer.error[13];
Diletant 173:7f938afb0447 566 hashParamTable[116].size = sizeof(device.plcs.regulator.settings.transfer.error[13]);
Diletant 173:7f938afb0447 567 hashParamTable[117].hash = 0x328e47ed;
Diletant 173:7f938afb0447 568 hashParamTable[117].ref = &device.dither.detector.settings.transfer.raw[0];
Diletant 173:7f938afb0447 569 hashParamTable[117].size = sizeof(device.dither.detector.settings.transfer.raw[0]);
Diletant 173:7f938afb0447 570 hashParamTable[118].hash = 0x3292d5ec;
Diletant 173:7f938afb0447 571 hashParamTable[118].ref = &device.dither.frequency.state.max;
Diletant 173:7f938afb0447 572 hashParamTable[118].size = sizeof(device.dither.frequency.state.max);
Diletant 173:7f938afb0447 573 hashParamTable[119].hash = 0x32a83842;
Diletant 173:7f938afb0447 574 hashParamTable[119].ref = &device.sequencer.sampler.settings.sequence[39];
Diletant 173:7f938afb0447 575 hashParamTable[119].size = sizeof(device.sequencer.sampler.settings.sequence[39]);
Diletant 173:7f938afb0447 576 hashParamTable[120].hash = 0x3300b784;
Diletant 173:7f938afb0447 577 hashParamTable[120].ref = &device.dither.amplitude.settings.transfer.correction[14];
Diletant 173:7f938afb0447 578 hashParamTable[120].size = sizeof(device.dither.amplitude.settings.transfer.correction[14]);
Diletant 173:7f938afb0447 579 hashParamTable[121].hash = 0x335b203f;
Diletant 173:7f938afb0447 580 hashParamTable[121].ref = &device.isacs.output.settings.transfer.voltage[13];
Diletant 173:7f938afb0447 581 hashParamTable[121].size = sizeof(device.isacs.output.settings.transfer.voltage[13]);
Diletant 173:7f938afb0447 582 hashParamTable[122].hash = 0x336a5275;
Diletant 173:7f938afb0447 583 hashParamTable[122].ref = &device.sequencer.sampler.settings.sequence[29];
Diletant 173:7f938afb0447 584 hashParamTable[122].size = sizeof(device.sequencer.sampler.settings.sequence[29]);
Diletant 173:7f938afb0447 585 hashParamTable[123].hash = 0x33b1a907;
Diletant 173:7f938afb0447 586 hashParamTable[123].ref = &device.plcs.feedback.settings.transfer.raw[15];
Diletant 173:7f938afb0447 587 hashParamTable[123].size = sizeof(device.plcs.feedback.settings.transfer.raw[15]);
Diletant 173:7f938afb0447 588 hashParamTable[124].hash = 0x33c90940;
Diletant 173:7f938afb0447 589 hashParamTable[124].ref = &device.plcs.reset.up.temperature[2];
Diletant 173:7f938afb0447 590 hashParamTable[124].size = sizeof(device.plcs.reset.up.temperature[2]);
Diletant 173:7f938afb0447 591 hashParamTable[125].hash = 0x33d05977;
Diletant 173:7f938afb0447 592 hashParamTable[125].ref = &device.plcs.feedback.settings.transfer.raw[3];
Diletant 173:7f938afb0447 593 hashParamTable[125].size = sizeof(device.plcs.feedback.settings.transfer.raw[3]);
Diletant 173:7f938afb0447 594 hashParamTable[126].hash = 0x33d25e2d;
Diletant 173:7f938afb0447 595 hashParamTable[126].ref = &device.plcs.bias.settings.transfer.raw[3];
Diletant 173:7f938afb0447 596 hashParamTable[126].size = sizeof(device.plcs.bias.settings.transfer.raw[3]);
Diletant 173:7f938afb0447 597 hashParamTable[127].hash = 0x33f00764;
Diletant 173:7f938afb0447 598 hashParamTable[127].ref = &device.isacs.output.settings.transfer.code[8];
Diletant 173:7f938afb0447 599 hashParamTable[127].size = sizeof(device.isacs.output.settings.transfer.code[8]);
Diletant 173:7f938afb0447 600 hashParamTable[128].hash = 0x34603b36;
Diletant 173:7f938afb0447 601 hashParamTable[128].ref = &device.plcs.reset.up.duration[14];
Diletant 173:7f938afb0447 602 hashParamTable[128].size = sizeof(device.plcs.reset.up.duration[14]);
Diletant 173:7f938afb0447 603 hashParamTable[129].hash = 0x34886294;
Diletant 173:7f938afb0447 604 hashParamTable[129].ref = &device.dither.amplitude.settings.transfer.correction[4];
Diletant 173:7f938afb0447 605 hashParamTable[129].size = sizeof(device.dither.amplitude.settings.transfer.correction[4]);
Diletant 173:7f938afb0447 606 hashParamTable[130].hash = 0x35614a72;
Diletant 173:7f938afb0447 607 hashParamTable[130].ref = &device.dither.detector.settings.filter.factor[26];
Diletant 173:7f938afb0447 608 hashParamTable[130].size = sizeof(device.dither.detector.settings.filter.factor[26]);
Diletant 173:7f938afb0447 609 hashParamTable[131].hash = 0x35df3163;
Diletant 173:7f938afb0447 610 hashParamTable[131].ref = &device.plcs.output.settings.transfer.points;
Diletant 173:7f938afb0447 611 hashParamTable[131].size = sizeof(device.plcs.output.settings.transfer.points);
Diletant 173:7f938afb0447 612 hashParamTable[132].hash = 0x361a129e;
Diletant 173:7f938afb0447 613 hashParamTable[132].ref = &device.isacs.output.settings.reset.voltage;
Diletant 173:7f938afb0447 614 hashParamTable[132].size = sizeof(device.isacs.output.settings.reset.voltage);
Diletant 173:7f938afb0447 615 hashParamTable[133].hash = 0x362544f0;
Diletant 173:7f938afb0447 616 hashParamTable[133].ref = &device.sequencer.sampler.settings.sequence[59];
Diletant 173:7f938afb0447 617 hashParamTable[133].size = sizeof(device.sequencer.sampler.settings.sequence[59]);
Diletant 173:7f938afb0447 618 hashParamTable[134].hash = 0x3670dff5;
Diletant 173:7f938afb0447 619 hashParamTable[134].ref = &device.plcs.reset.down.duration[11];
Diletant 173:7f938afb0447 620 hashParamTable[134].size = sizeof(device.plcs.reset.down.duration[11]);
Diletant 173:7f938afb0447 621 hashParamTable[135].hash = 0x36ee331;
Diletant 173:7f938afb0447 622 hashParamTable[135].ref = &device.isacs.regulator.state.enabled;
Diletant 173:7f938afb0447 623 hashParamTable[135].size = sizeof(device.isacs.regulator.state.enabled);
Diletant 173:7f938afb0447 624 hashParamTable[136].hash = 0x3727f42b;
Diletant 173:7f938afb0447 625 hashParamTable[136].ref = &device.dither.detector.settings.filter.factor[16];
Diletant 173:7f938afb0447 626 hashParamTable[136].size = sizeof(device.dither.detector.settings.filter.factor[16]);
Diletant 173:7f938afb0447 627 hashParamTable[137].hash = 0x3744b2a9;
Diletant 173:7f938afb0447 628 hashParamTable[137].ref = &device.sequencer.output.analog.settings.transfer.code[13];
Diletant 173:7f938afb0447 629 hashParamTable[137].size = sizeof(device.sequencer.output.analog.settings.transfer.code[13]);
Diletant 173:7f938afb0447 630 hashParamTable[138].hash = 0x3760b966;
Diletant 173:7f938afb0447 631 hashParamTable[138].ref = &device.dither.pulse.state.width;
Diletant 173:7f938afb0447 632 hashParamTable[138].size = sizeof(device.dither.pulse.state.width);
Diletant 173:7f938afb0447 633 hashParamTable[139].hash = 0x37633043;
Diletant 173:7f938afb0447 634 hashParamTable[139].ref = &device.plcs.output.settings.transfer.code[11];
Diletant 173:7f938afb0447 635 hashParamTable[139].size = sizeof(device.plcs.output.settings.transfer.code[11]);
Diletant 173:7f938afb0447 636 hashParamTable[140].hash = 0x378c53c7;
Diletant 173:7f938afb0447 637 hashParamTable[140].ref = &device.plcs.output.settings.transfer.voltage[8];
Diletant 173:7f938afb0447 638 hashParamTable[140].size = sizeof(device.plcs.output.settings.transfer.voltage[8]);
Diletant 173:7f938afb0447 639 hashParamTable[141].hash = 0x37e72ec7;
Diletant 173:7f938afb0447 640 hashParamTable[141].ref = &device.sequencer.sampler.settings.sequence[49];
Diletant 173:7f938afb0447 641 hashParamTable[141].size = sizeof(device.sequencer.sampler.settings.sequence[49]);
Diletant 173:7f938afb0447 642 hashParamTable[142].hash = 0x3837025b;
Diletant 173:7f938afb0447 643 hashParamTable[142].ref = &device.dither.detector.settings.transfer.raw[14];
Diletant 173:7f938afb0447 644 hashParamTable[142].size = sizeof(device.dither.detector.settings.transfer.raw[14]);
Diletant 173:7f938afb0447 645 hashParamTable[143].hash = 0x38a89ed6;
Diletant 173:7f938afb0447 646 hashParamTable[143].ref = &device.plcs.regulator.settings.transfer.correction[5];
Diletant 173:7f938afb0447 647 hashParamTable[143].size = sizeof(device.plcs.regulator.settings.transfer.correction[5]);
Diletant 173:7f938afb0447 648 hashParamTable[144].hash = 0x38b6013a;
Diletant 173:7f938afb0447 649 hashParamTable[144].ref = &device.dither.detector.settings.transfer.restored[14];
Diletant 173:7f938afb0447 650 hashParamTable[144].size = sizeof(device.dither.detector.settings.transfer.restored[14]);
Diletant 173:7f938afb0447 651 hashParamTable[145].hash = 0x3992eb3f;
Diletant 173:7f938afb0447 652 hashParamTable[145].ref = &device.plcs.bias.settings.transfer.normalized[8];
Diletant 173:7f938afb0447 653 hashParamTable[145].size = sizeof(device.plcs.bias.settings.transfer.normalized[8]);
Diletant 173:7f938afb0447 654 hashParamTable[146].hash = 0x3a06e7d5;
Diletant 173:7f938afb0447 655 hashParamTable[146].ref = &device.plcs.feedback.settings.transfer.normalized[3];
Diletant 173:7f938afb0447 656 hashParamTable[146].size = sizeof(device.plcs.feedback.settings.transfer.normalized[3]);
Diletant 173:7f938afb0447 657 hashParamTable[147].hash = 0x3a3ecdeb;
Diletant 173:7f938afb0447 658 hashParamTable[147].ref = &device.dither.pulse.state.min;
Diletant 173:7f938afb0447 659 hashParamTable[147].size = sizeof(device.dither.pulse.state.min);
Diletant 173:7f938afb0447 660 hashParamTable[148].hash = 0x3a666599;
Diletant 173:7f938afb0447 661 hashParamTable[148].ref = &device.plcs.reset.up.points;
Diletant 173:7f938afb0447 662 hashParamTable[148].size = sizeof(device.plcs.reset.up.points);
Diletant 173:7f938afb0447 663 hashParamTable[149].hash = 0x3a89b63e;
Diletant 173:7f938afb0447 664 hashParamTable[149].ref = &device.plcs.reset.levels.upper;
Diletant 173:7f938afb0447 665 hashParamTable[149].size = sizeof(device.plcs.reset.levels.upper);
Diletant 173:7f938afb0447 666 hashParamTable[150].hash = 0x3a9e39b3;
Diletant 173:7f938afb0447 667 hashParamTable[150].ref = &device.plcs.bias.settings.transfer.normalized[10];
Diletant 173:7f938afb0447 668 hashParamTable[150].size = sizeof(device.plcs.bias.settings.transfer.normalized[10]);
Diletant 173:7f938afb0447 669 hashParamTable[151].hash = 0x3aa26201;
Diletant 173:7f938afb0447 670 hashParamTable[151].ref = &device.sequencer.output.analog.settings.transfer.voltage[8];
Diletant 173:7f938afb0447 671 hashParamTable[151].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[8]);
Diletant 173:7f938afb0447 672 hashParamTable[152].hash = 0x3ac2f8e9;
Diletant 173:7f938afb0447 673 hashParamTable[152].ref = &device.isacs.input.state.voltage;
Diletant 173:7f938afb0447 674 hashParamTable[152].size = sizeof(device.isacs.input.state.voltage);
Diletant 173:7f938afb0447 675 hashParamTable[153].hash = 0x3ad87ebd;
Diletant 173:7f938afb0447 676 hashParamTable[153].ref = &device.dither.amplitude.state.reference;
Diletant 173:7f938afb0447 677 hashParamTable[153].size = sizeof(device.dither.amplitude.state.reference);
Diletant 173:7f938afb0447 678 hashParamTable[154].hash = 0x3b012deb;
Diletant 173:7f938afb0447 679 hashParamTable[154].ref = &device.dither.pulse.settings.max;
Diletant 173:7f938afb0447 680 hashParamTable[154].size = sizeof(device.dither.pulse.settings.max);
Diletant 173:7f938afb0447 681 hashParamTable[155].hash = 0x3cb0b44a;
Diletant 173:7f938afb0447 682 hashParamTable[155].ref = &device.plcs.regulator.settings.transfer.error[8];
Diletant 173:7f938afb0447 683 hashParamTable[155].size = sizeof(device.plcs.regulator.settings.transfer.error[8]);
Diletant 173:7f938afb0447 684 hashParamTable[156].hash = 0x3d02cce8;
Diletant 173:7f938afb0447 685 hashParamTable[156].ref = &device.plcs.output.settings.transfer.code[3];
Diletant 173:7f938afb0447 686 hashParamTable[156].size = sizeof(device.plcs.output.settings.transfer.code[3]);
Diletant 173:7f938afb0447 687 hashParamTable[157].hash = 0x3d58b0a8;
Diletant 173:7f938afb0447 688 hashParamTable[157].ref = &device.isacs.regulator.settings.regular.enabled;
Diletant 173:7f938afb0447 689 hashParamTable[157].size = sizeof(device.isacs.regulator.settings.regular.enabled);
Diletant 173:7f938afb0447 690 hashParamTable[158].hash = 0x3dc07ea2;
Diletant 173:7f938afb0447 691 hashParamTable[158].ref = &device.dither.frequency.settings.transfer.correction[12];
Diletant 173:7f938afb0447 692 hashParamTable[158].size = sizeof(device.dither.frequency.settings.transfer.correction[12]);
Diletant 173:7f938afb0447 693 hashParamTable[159].hash = 0x3ecec226;
Diletant 173:7f938afb0447 694 hashParamTable[159].ref = &device.dither.amplitude.settings.transfer.error[2];
Diletant 173:7f938afb0447 695 hashParamTable[159].size = sizeof(device.dither.amplitude.settings.transfer.error[2]);
Diletant 173:7f938afb0447 696 hashParamTable[160].hash = 0x3ed0adcb;
Diletant 173:7f938afb0447 697 hashParamTable[160].ref = &device.plcs.reset.down.temperature[7];
Diletant 173:7f938afb0447 698 hashParamTable[160].size = sizeof(device.plcs.reset.down.temperature[7]);
Diletant 173:7f938afb0447 699 hashParamTable[161].hash = 0x3efaf1e;
Diletant 173:7f938afb0447 700 hashParamTable[161].ref = &device.plcs.regulator.settings.transfer.error[11];
Diletant 173:7f938afb0447 701 hashParamTable[161].size = sizeof(device.plcs.regulator.settings.transfer.error[11]);
Diletant 173:7f938afb0447 702 hashParamTable[162].hash = 0x3ff8887f;
Diletant 173:7f938afb0447 703 hashParamTable[162].ref = &device.dither.detector.settings.filter.factor[5];
Diletant 173:7f938afb0447 704 hashParamTable[162].size = sizeof(device.dither.detector.settings.filter.factor[5]);
Diletant 173:7f938afb0447 705 hashParamTable[163].hash = 0x401d1b93;
Diletant 173:7f938afb0447 706 hashParamTable[163].ref = &device.plcs.feedback.settings.input;
Diletant 173:7f938afb0447 707 hashParamTable[163].size = sizeof(device.plcs.feedback.settings.input);
Diletant 173:7f938afb0447 708 hashParamTable[164].hash = 0x407538ad;
Diletant 173:7f938afb0447 709 hashParamTable[164].ref = &device.plcs.output.settings.transfer.code[6];
Diletant 173:7f938afb0447 710 hashParamTable[164].size = sizeof(device.plcs.output.settings.transfer.code[6]);
Diletant 173:7f938afb0447 711 hashParamTable[165].hash = 0x41cdcbe5;
Diletant 173:7f938afb0447 712 hashParamTable[165].ref = &device.plcs.output.settings.enabled;
Diletant 173:7f938afb0447 713 hashParamTable[165].size = sizeof(device.plcs.output.settings.enabled);
Diletant 173:7f938afb0447 714 hashParamTable[166].hash = 0x41e6553f;
Diletant 173:7f938afb0447 715 hashParamTable[166].ref = &device.controller.SSP.in[2];
Diletant 173:7f938afb0447 716 hashParamTable[166].size = sizeof(device.controller.SSP.in[2]);
Diletant 173:7f938afb0447 717 hashParamTable[167].hash = 0x428f7c3a;
Diletant 173:7f938afb0447 718 hashParamTable[167].ref = &device.dither.detector.settings.filter.factor[0];
Diletant 173:7f938afb0447 719 hashParamTable[167].size = sizeof(device.dither.detector.settings.filter.factor[0]);
Diletant 173:7f938afb0447 720 hashParamTable[168].hash = 0x435238e3;
Diletant 173:7f938afb0447 721 hashParamTable[168].ref = &device.plcs.detector.state.out;
Diletant 173:7f938afb0447 722 hashParamTable[168].size = sizeof(device.plcs.detector.state.out);
Diletant 173:7f938afb0447 723 hashParamTable[169].hash = 0x438d8918;
Diletant 173:7f938afb0447 724 hashParamTable[169].ref = &device.isacs.input.settings.transfer.voltage[12];
Diletant 173:7f938afb0447 725 hashParamTable[169].size = sizeof(device.isacs.input.settings.transfer.voltage[12]);
Diletant 173:7f938afb0447 726 hashParamTable[170].hash = 0x43a7598e;
Diletant 173:7f938afb0447 727 hashParamTable[170].ref = &device.plcs.reset.down.temperature[2];
Diletant 173:7f938afb0447 728 hashParamTable[170].size = sizeof(device.plcs.reset.down.temperature[2]);
Diletant 173:7f938afb0447 729 hashParamTable[171].hash = 0x43b93663;
Diletant 173:7f938afb0447 730 hashParamTable[171].ref = &device.dither.amplitude.settings.transfer.error[7];
Diletant 173:7f938afb0447 731 hashParamTable[171].size = sizeof(device.dither.amplitude.settings.transfer.error[7]);
Diletant 173:7f938afb0447 732 hashParamTable[172].hash = 0x44212bba;
Diletant 173:7f938afb0447 733 hashParamTable[172].ref = &device.plcs.feedback.settings.transfer.normalized[12];
Diletant 173:7f938afb0447 734 hashParamTable[172].size = sizeof(device.plcs.feedback.settings.transfer.normalized[12]);
Diletant 173:7f938afb0447 735 hashParamTable[173].hash = 0x446bd77;
Diletant 173:7f938afb0447 736 hashParamTable[173].ref = &device.plcs.reset.down.duration[13];
Diletant 173:7f938afb0447 737 hashParamTable[173].size = sizeof(device.plcs.reset.down.duration[13]);
Diletant 173:7f938afb0447 738 hashParamTable[174].hash = 0x44b2f8b0;
Diletant 173:7f938afb0447 739 hashParamTable[174].ref = &device.dither.amplitude.settings.transfer.error[12];
Diletant 173:7f938afb0447 740 hashParamTable[174].size = sizeof(device.dither.amplitude.settings.transfer.error[12]);
Diletant 173:7f938afb0447 741 hashParamTable[175].hash = 0x4540f61e;
Diletant 173:7f938afb0447 742 hashParamTable[175].ref = &device.dither.detector.settings.transfer.raw[11];
Diletant 173:7f938afb0447 743 hashParamTable[175].size = sizeof(device.dither.detector.settings.transfer.raw[11]);
Diletant 173:7f938afb0447 744 hashParamTable[176].hash = 0x45a15cba;
Diletant 173:7f938afb0447 745 hashParamTable[176].ref = &device.sensor.settings.block;
Diletant 173:7f938afb0447 746 hashParamTable[176].size = sizeof(device.sensor.settings.block);
Diletant 173:7f938afb0447 747 hashParamTable[177].hash = 0x45c1f57f;
Diletant 173:7f938afb0447 748 hashParamTable[177].ref = &device.dither.detector.settings.transfer.restored[11];
Diletant 173:7f938afb0447 749 hashParamTable[177].size = sizeof(device.dither.detector.settings.transfer.restored[11]);
Diletant 173:7f938afb0447 750 hashParamTable[178].hash = 0x45df6a93;
Diletant 173:7f938afb0447 751 hashParamTable[178].ref = &device.plcs.regulator.settings.transfer.correction[0];
Diletant 173:7f938afb0447 752 hashParamTable[178].size = sizeof(device.plcs.regulator.settings.transfer.correction[0]);
Diletant 173:7f938afb0447 753 hashParamTable[179].hash = 0x47502484;
Diletant 173:7f938afb0447 754 hashParamTable[179].ref = &device.sequencer.sampler.state.voltage;
Diletant 173:7f938afb0447 755 hashParamTable[179].size = sizeof(device.sequencer.sampler.state.voltage);
Diletant 173:7f938afb0447 756 hashParamTable[180].hash = 0x47711390;
Diletant 173:7f938afb0447 757 hashParamTable[180].ref = &device.plcs.feedback.settings.transfer.normalized[6];
Diletant 173:7f938afb0447 758 hashParamTable[180].size = sizeof(device.plcs.feedback.settings.transfer.normalized[6]);
Diletant 173:7f938afb0447 759 hashParamTable[181].hash = 0x47e9cdf6;
Diletant 173:7f938afb0447 760 hashParamTable[181].ref = &device.plcs.bias.settings.transfer.normalized[15];
Diletant 173:7f938afb0447 761 hashParamTable[181].size = sizeof(device.plcs.bias.settings.transfer.normalized[15]);
Diletant 173:7f938afb0447 762 hashParamTable[182].hash = 0x4816be37;
Diletant 173:7f938afb0447 763 hashParamTable[182].ref = &device.dither.detector.settings.filter.factor[23];
Diletant 173:7f938afb0447 764 hashParamTable[182].size = sizeof(device.dither.detector.settings.filter.factor[23]);
Diletant 173:7f938afb0447 765 hashParamTable[183].hash = 0x4917cf73;
Diletant 173:7f938afb0447 766 hashParamTable[183].ref = &device.plcs.reset.up.duration[11];
Diletant 173:7f938afb0447 767 hashParamTable[183].size = sizeof(device.plcs.reset.up.duration[11]);
Diletant 173:7f938afb0447 768 hashParamTable[184].hash = 0x498a9f45;
Diletant 173:7f938afb0447 769 hashParamTable[184].ref = &device.controller.I2C.state.buffer[2];
Diletant 173:7f938afb0447 770 hashParamTable[184].size = sizeof(device.controller.I2C.state.buffer[2]);
Diletant 173:7f938afb0447 771 hashParamTable[185].hash = 0x49ff96d1;
Diletant 173:7f938afb0447 772 hashParamTable[185].ref = &device.dither.amplitude.settings.transfer.correction[1];
Diletant 173:7f938afb0447 773 hashParamTable[185].size = sizeof(device.dither.amplitude.settings.transfer.correction[1]);
Diletant 173:7f938afb0447 774 hashParamTable[186].hash = 0x4a14c406;
Diletant 173:7f938afb0447 775 hashParamTable[186].ref = &device.plcs.output.settings.transfer.code[14];
Diletant 173:7f938afb0447 776 hashParamTable[186].size = sizeof(device.plcs.output.settings.transfer.code[14]);
Diletant 173:7f938afb0447 777 hashParamTable[187].hash = 0x4a50006e;
Diletant 173:7f938afb0447 778 hashParamTable[187].ref = &device.dither.detector.settings.filter.factor[13];
Diletant 173:7f938afb0447 779 hashParamTable[187].size = sizeof(device.dither.detector.settings.filter.factor[13]);
Diletant 173:7f938afb0447 780 hashParamTable[188].hash = 0x4a75ad0c;
Diletant 173:7f938afb0447 781 hashParamTable[188].ref = &device.dither.pulse.settings.width;
Diletant 173:7f938afb0447 782 hashParamTable[188].size = sizeof(device.dither.pulse.settings.width);
Diletant 173:7f938afb0447 783 hashParamTable[189].hash = 0x4b072bb0;
Diletant 173:7f938afb0447 784 hashParamTable[189].ref = &device.plcs.reset.down.duration[14];
Diletant 173:7f938afb0447 785 hashParamTable[189].size = sizeof(device.plcs.reset.down.duration[14]);
Diletant 173:7f938afb0447 786 hashParamTable[190].hash = 0x4b097ccb;
Diletant 173:7f938afb0447 787 hashParamTable[190].ref = &device.controller.SSP.out[0];
Diletant 173:7f938afb0447 788 hashParamTable[190].size = sizeof(device.controller.SSP.out[0]);
Diletant 173:7f938afb0447 789 hashParamTable[191].hash = 0x4d4d3007;
Diletant 173:7f938afb0447 790 hashParamTable[191].ref = &device.isacs.output.settings.transfer.voltage[6];
Diletant 173:7f938afb0447 791 hashParamTable[191].size = sizeof(device.isacs.output.settings.transfer.voltage[6]);
Diletant 173:7f938afb0447 792 hashParamTable[192].hash = 0x4d577fc7;
Diletant 173:7f938afb0447 793 hashParamTable[192].ref = &device.isacs.input.settings.transfer.code[6];
Diletant 173:7f938afb0447 794 hashParamTable[192].size = sizeof(device.isacs.input.settings.transfer.code[6]);
Diletant 173:7f938afb0447 795 hashParamTable[193].hash = 0x4d730bd4;
Diletant 173:7f938afb0447 796 hashParamTable[193].ref = &device.dither.frequency.settings.transfer.error[9];
Diletant 173:7f938afb0447 797 hashParamTable[193].size = sizeof(device.dither.frequency.settings.transfer.error[9]);
Diletant 173:7f938afb0447 798 hashParamTable[194].hash = 0x4d7d9e2e;
Diletant 173:7f938afb0447 799 hashParamTable[194].ref = &device.dither.frequency.settings.transfer.error[14];
Diletant 173:7f938afb0447 800 hashParamTable[194].size = sizeof(device.dither.frequency.settings.transfer.error[14]);
Diletant 173:7f938afb0447 801 hashParamTable[195].hash = 0x4e7743c1;
Diletant 173:7f938afb0447 802 hashParamTable[195].ref = &device.dither.amplitude.settings.transfer.correction[11];
Diletant 173:7f938afb0447 803 hashParamTable[195].size = sizeof(device.dither.amplitude.settings.transfer.correction[11]);
Diletant 173:7f938afb0447 804 hashParamTable[196].hash = 0x4ea5aa68;
Diletant 173:7f938afb0447 805 hashParamTable[196].ref = &device.plcs.bias.settings.transfer.raw[6];
Diletant 173:7f938afb0447 806 hashParamTable[196].size = sizeof(device.plcs.bias.settings.transfer.raw[6]);
Diletant 173:7f938afb0447 807 hashParamTable[197].hash = 0x4ea7ad32;
Diletant 173:7f938afb0447 808 hashParamTable[197].ref = &device.plcs.feedback.settings.transfer.raw[6];
Diletant 173:7f938afb0447 809 hashParamTable[197].size = sizeof(device.plcs.feedback.settings.transfer.raw[6]);
Diletant 173:7f938afb0447 810 hashParamTable[198].hash = 0x4ebefd05;
Diletant 173:7f938afb0447 811 hashParamTable[198].ref = &device.plcs.reset.up.temperature[7];
Diletant 173:7f938afb0447 812 hashParamTable[198].size = sizeof(device.plcs.reset.up.temperature[7]);
Diletant 173:7f938afb0447 813 hashParamTable[199].hash = 0x4ec65d42;
Diletant 173:7f938afb0447 814 hashParamTable[199].ref = &device.plcs.feedback.settings.transfer.raw[10];
Diletant 173:7f938afb0447 815 hashParamTable[199].size = sizeof(device.plcs.feedback.settings.transfer.raw[10]);
Diletant 173:7f938afb0447 816 hashParamTable[200].hash = 0x4fd98d13;
Diletant 173:7f938afb0447 817 hashParamTable[200].ref = &device.isacs.output.settings.start.voltage;
Diletant 173:7f938afb0447 818 hashParamTable[200].size = sizeof(device.isacs.output.settings.start.voltage);
Diletant 173:7f938afb0447 819 hashParamTable[201].hash = 0x4ff9b3a8;
Diletant 173:7f938afb0447 820 hashParamTable[201].ref = &device.dither.detector.settings.transfer.raw[5];
Diletant 173:7f938afb0447 821 hashParamTable[201].size = sizeof(device.dither.detector.settings.transfer.raw[5]);
Diletant 173:7f938afb0447 822 hashParamTable[202].hash = 0x500cfe32;
Diletant 173:7f938afb0447 823 hashParamTable[202].ref = &device.plcs.reset.up.duration[10];
Diletant 173:7f938afb0447 824 hashParamTable[202].size = sizeof(device.plcs.reset.up.duration[10]);
Diletant 173:7f938afb0447 825 hashParamTable[203].hash = 0x5091ae04;
Diletant 173:7f938afb0447 826 hashParamTable[203].ref = &device.controller.I2C.state.buffer[3];
Diletant 173:7f938afb0447 827 hashParamTable[203].size = sizeof(device.controller.I2C.state.buffer[3]);
Diletant 173:7f938afb0447 828 hashParamTable[204].hash = 0x50e4a790;
Diletant 173:7f938afb0447 829 hashParamTable[204].ref = &device.dither.amplitude.settings.transfer.correction[0];
Diletant 173:7f938afb0447 830 hashParamTable[204].size = sizeof(device.dither.amplitude.settings.transfer.correction[0]);
Diletant 173:7f938afb0447 831 hashParamTable[205].hash = 0x510d8f76;
Diletant 173:7f938afb0447 832 hashParamTable[205].ref = &device.dither.detector.settings.filter.factor[22];
Diletant 173:7f938afb0447 833 hashParamTable[205].size = sizeof(device.dither.detector.settings.filter.factor[22]);
Diletant 173:7f938afb0447 834 hashParamTable[206].hash = 0x51196a9;
Diletant 173:7f938afb0447 835 hashParamTable[206].ref = &device.dither.detector.settings.filter.factor[14];
Diletant 173:7f938afb0447 836 hashParamTable[206].size = sizeof(device.dither.detector.settings.filter.factor[14]);
Diletant 173:7f938afb0447 837 hashParamTable[207].hash = 0x52124d8a;
Diletant 173:7f938afb0447 838 hashParamTable[207].ref = &device.controller.SSP.out[1];
Diletant 173:7f938afb0447 839 hashParamTable[207].size = sizeof(device.controller.SSP.out[1]);
Diletant 173:7f938afb0447 840 hashParamTable[208].hash = 0x521c1af1;
Diletant 173:7f938afb0447 841 hashParamTable[208].ref = &device.plcs.reset.down.duration[15];
Diletant 173:7f938afb0447 842 hashParamTable[208].size = sizeof(device.plcs.reset.down.duration[15]);
Diletant 173:7f938afb0447 843 hashParamTable[209].hash = 0x525b6730;
Diletant 173:7f938afb0447 844 hashParamTable[209].ref = &device.controller.I2C.state.enabled;
Diletant 173:7f938afb0447 845 hashParamTable[209].size = sizeof(device.controller.I2C.state.enabled);
Diletant 173:7f938afb0447 846 hashParamTable[210].hash = 0x528cd113;
Diletant 173:7f938afb0447 847 hashParamTable[210].ref = &device.plcs.feedback.state.input;
Diletant 173:7f938afb0447 848 hashParamTable[210].size = sizeof(device.plcs.feedback.state.input);
Diletant 173:7f938afb0447 849 hashParamTable[211].hash = 0x530ff547;
Diletant 173:7f938afb0447 850 hashParamTable[211].ref = &device.plcs.output.settings.transfer.code[15];
Diletant 173:7f938afb0447 851 hashParamTable[211].size = sizeof(device.plcs.output.settings.transfer.code[15]);
Diletant 173:7f938afb0447 852 hashParamTable[212].hash = 0x534b312f;
Diletant 173:7f938afb0447 853 hashParamTable[212].ref = &device.dither.detector.settings.filter.factor[12];
Diletant 173:7f938afb0447 854 hashParamTable[212].size = sizeof(device.dither.detector.settings.filter.factor[12]);
Diletant 173:7f938afb0447 855 hashParamTable[213].hash = 0x5428ad66;
Diletant 173:7f938afb0447 856 hashParamTable[213].ref = &device.plcs.regulator.state.correction;
Diletant 173:7f938afb0447 857 hashParamTable[213].size = sizeof(device.plcs.regulator.state.correction);
Diletant 173:7f938afb0447 858 hashParamTable[214].hash = 0x542e0c62;
Diletant 173:7f938afb0447 859 hashParamTable[214].ref = &device.controller.flash.settings.hashSector;
Diletant 173:7f938afb0447 860 hashParamTable[214].size = sizeof(device.controller.flash.settings.hashSector);
Diletant 173:7f938afb0447 861 hashParamTable[215].hash = 0x544c4e86;
Diletant 173:7f938afb0447 862 hashParamTable[215].ref = &device.isacs.input.settings.transfer.code[7];
Diletant 173:7f938afb0447 863 hashParamTable[215].size = sizeof(device.isacs.input.settings.transfer.code[7]);
Diletant 173:7f938afb0447 864 hashParamTable[216].hash = 0x54560146;
Diletant 173:7f938afb0447 865 hashParamTable[216].ref = &device.isacs.output.settings.transfer.voltage[7];
Diletant 173:7f938afb0447 866 hashParamTable[216].size = sizeof(device.isacs.output.settings.transfer.voltage[7]);
Diletant 173:7f938afb0447 867 hashParamTable[217].hash = 0x5466af6f;
Diletant 173:7f938afb0447 868 hashParamTable[217].ref = &device.dither.frequency.settings.transfer.error[15];
Diletant 173:7f938afb0447 869 hashParamTable[217].size = sizeof(device.dither.frequency.settings.transfer.error[15]);
Diletant 173:7f938afb0447 870 hashParamTable[218].hash = 0x54683a95;
Diletant 173:7f938afb0447 871 hashParamTable[218].ref = &device.dither.frequency.settings.transfer.error[8];
Diletant 173:7f938afb0447 872 hashParamTable[218].size = sizeof(device.dither.frequency.settings.transfer.error[8]);
Diletant 173:7f938afb0447 873 hashParamTable[219].hash = 0x55552c1;
Diletant 173:7f938afb0447 874 hashParamTable[219].ref = &device.plcs.output.settings.transfer.code[13];
Diletant 173:7f938afb0447 875 hashParamTable[219].size = sizeof(device.plcs.output.settings.transfer.code[13]);
Diletant 173:7f938afb0447 876 hashParamTable[220].hash = 0x55893f99;
Diletant 173:7f938afb0447 877 hashParamTable[220].ref = &device.dither.pulse.state.counter;
Diletant 173:7f938afb0447 878 hashParamTable[220].size = sizeof(device.dither.pulse.state.counter);
Diletant 173:7f938afb0447 879 hashParamTable[221].hash = 0x56e282e9;
Diletant 173:7f938afb0447 880 hashParamTable[221].ref = &device.dither.detector.settings.transfer.raw[4];
Diletant 173:7f938afb0447 881 hashParamTable[221].size = sizeof(device.dither.detector.settings.transfer.raw[4]);
Diletant 173:7f938afb0447 882 hashParamTable[222].hash = 0x572d02b;
Diletant 173:7f938afb0447 883 hashParamTable[222].ref = &device.sequencer.output.analog.settings.transfer.code[11];
Diletant 173:7f938afb0447 884 hashParamTable[222].size = sizeof(device.sequencer.output.analog.settings.transfer.code[11]);
Diletant 173:7f938afb0447 885 hashParamTable[223].hash = 0x575791d2;
Diletant 173:7f938afb0447 886 hashParamTable[223].ref = &device.dither.amplitude.settings.reference;
Diletant 173:7f938afb0447 887 hashParamTable[223].size = sizeof(device.dither.amplitude.settings.reference);
Diletant 173:7f938afb0447 888 hashParamTable[224].hash = 0x576c7280;
Diletant 173:7f938afb0447 889 hashParamTable[224].ref = &device.dither.amplitude.settings.transfer.correction[10];
Diletant 173:7f938afb0447 890 hashParamTable[224].size = sizeof(device.dither.amplitude.settings.transfer.correction[10]);
Diletant 173:7f938afb0447 891 hashParamTable[225].hash = 0x57a5cc44;
Diletant 173:7f938afb0447 892 hashParamTable[225].ref = &device.plcs.reset.up.temperature[6];
Diletant 173:7f938afb0447 893 hashParamTable[225].size = sizeof(device.plcs.reset.up.temperature[6]);
Diletant 173:7f938afb0447 894 hashParamTable[226].hash = 0x57bc9c73;
Diletant 173:7f938afb0447 895 hashParamTable[226].ref = &device.plcs.feedback.settings.transfer.raw[7];
Diletant 173:7f938afb0447 896 hashParamTable[226].size = sizeof(device.plcs.feedback.settings.transfer.raw[7]);
Diletant 173:7f938afb0447 897 hashParamTable[227].hash = 0x57be9b29;
Diletant 173:7f938afb0447 898 hashParamTable[227].ref = &device.plcs.bias.settings.transfer.raw[7];
Diletant 173:7f938afb0447 899 hashParamTable[227].size = sizeof(device.plcs.bias.settings.transfer.raw[7]);
Diletant 173:7f938afb0447 900 hashParamTable[228].hash = 0x57dd6c03;
Diletant 173:7f938afb0447 901 hashParamTable[228].ref = &device.plcs.feedback.settings.transfer.raw[11];
Diletant 173:7f938afb0447 902 hashParamTable[228].size = sizeof(device.plcs.feedback.settings.transfer.raw[11]);
Diletant 173:7f938afb0447 903 hashParamTable[229].hash = 0x58fd647e;
Diletant 173:7f938afb0447 904 hashParamTable[229].ref = &device.controller.SSP.in[3];
Diletant 173:7f938afb0447 905 hashParamTable[229].size = sizeof(device.controller.SSP.in[3]);
Diletant 173:7f938afb0447 906 hashParamTable[230].hash = 0x596e09ec;
Diletant 173:7f938afb0447 907 hashParamTable[230].ref = &device.plcs.output.settings.transfer.code[7];
Diletant 173:7f938afb0447 908 hashParamTable[230].size = sizeof(device.plcs.output.settings.transfer.code[7]);
Diletant 173:7f938afb0447 909 hashParamTable[231].hash = 0x5a4c1281;
Diletant 173:7f938afb0447 910 hashParamTable[231].ref = &device.plcs.reset.levels.lower;
Diletant 173:7f938afb0447 911 hashParamTable[231].size = sizeof(device.plcs.reset.levels.lower);
Diletant 173:7f938afb0447 912 hashParamTable[232].hash = 0x5a96b859;
Diletant 173:7f938afb0447 913 hashParamTable[232].ref = &device.isacs.input.settings.transfer.voltage[13];
Diletant 173:7f938afb0447 914 hashParamTable[232].size = sizeof(device.isacs.input.settings.transfer.voltage[13]);
Diletant 173:7f938afb0447 915 hashParamTable[233].hash = 0x5aa20722;
Diletant 173:7f938afb0447 916 hashParamTable[233].ref = &device.dither.amplitude.settings.transfer.error[6];
Diletant 173:7f938afb0447 917 hashParamTable[233].size = sizeof(device.dither.amplitude.settings.transfer.error[6]);
Diletant 173:7f938afb0447 918 hashParamTable[234].hash = 0x5ab07032;
Diletant 173:7f938afb0447 919 hashParamTable[234].ref = &device.sequencer.output.analog.state.enabled;
Diletant 173:7f938afb0447 920 hashParamTable[234].size = sizeof(device.sequencer.output.analog.state.enabled);
Diletant 173:7f938afb0447 921 hashParamTable[235].hash = 0x5abc68cf;
Diletant 173:7f938afb0447 922 hashParamTable[235].ref = &device.plcs.reset.down.temperature[3];
Diletant 173:7f938afb0447 923 hashParamTable[235].size = sizeof(device.plcs.reset.down.temperature[3]);
Diletant 173:7f938afb0447 924 hashParamTable[236].hash = 0x5b944d7b;
Diletant 173:7f938afb0447 925 hashParamTable[236].ref = &device.dither.detector.settings.filter.factor[1];
Diletant 173:7f938afb0447 926 hashParamTable[236].size = sizeof(device.dither.detector.settings.filter.factor[1]);
Diletant 173:7f938afb0447 927 hashParamTable[237].hash = 0x5bb73eb8;
Diletant 173:7f938afb0447 928 hashParamTable[237].ref = &device.dither.detector.state.sum;
Diletant 173:7f938afb0447 929 hashParamTable[237].size = sizeof(device.dither.detector.state.sum);
Diletant 173:7f938afb0447 930 hashParamTable[238].hash = 0x5c5bc75f;
Diletant 173:7f938afb0447 931 hashParamTable[238].ref = &device.dither.detector.settings.transfer.raw[10];
Diletant 173:7f938afb0447 932 hashParamTable[238].size = sizeof(device.dither.detector.settings.transfer.raw[10]);
Diletant 173:7f938afb0447 933 hashParamTable[239].hash = 0x5cc45bd2;
Diletant 173:7f938afb0447 934 hashParamTable[239].ref = &device.plcs.regulator.settings.transfer.correction[1];
Diletant 173:7f938afb0447 935 hashParamTable[239].size = sizeof(device.plcs.regulator.settings.transfer.correction[1]);
Diletant 173:7f938afb0447 936 hashParamTable[240].hash = 0x5cdac43e;
Diletant 173:7f938afb0447 937 hashParamTable[240].ref = &device.dither.detector.settings.transfer.restored[10];
Diletant 173:7f938afb0447 938 hashParamTable[240].size = sizeof(device.dither.detector.settings.transfer.restored[10]);
Diletant 173:7f938afb0447 939 hashParamTable[241].hash = 0x5d3a1afb;
Diletant 173:7f938afb0447 940 hashParamTable[241].ref = &device.plcs.feedback.settings.transfer.normalized[13];
Diletant 173:7f938afb0447 941 hashParamTable[241].size = sizeof(device.plcs.feedback.settings.transfer.normalized[13]);
Diletant 173:7f938afb0447 942 hashParamTable[242].hash = 0x5da9c9f1;
Diletant 173:7f938afb0447 943 hashParamTable[242].ref = &device.dither.amplitude.settings.transfer.error[13];
Diletant 173:7f938afb0447 944 hashParamTable[242].size = sizeof(device.dither.amplitude.settings.transfer.error[13]);
Diletant 173:7f938afb0447 945 hashParamTable[243].hash = 0x5dd88c4f;
Diletant 173:7f938afb0447 946 hashParamTable[243].ref = &device.plcs.regulator.state.reference;
Diletant 173:7f938afb0447 947 hashParamTable[243].size = sizeof(device.plcs.regulator.state.reference);
Diletant 173:7f938afb0447 948 hashParamTable[244].hash = 0x5e6a22d1;
Diletant 173:7f938afb0447 949 hashParamTable[244].ref = &device.plcs.feedback.settings.transfer.normalized[7];
Diletant 173:7f938afb0447 950 hashParamTable[244].size = sizeof(device.plcs.feedback.settings.transfer.normalized[7]);
Diletant 173:7f938afb0447 951 hashParamTable[245].hash = 0x5ef2fcb7;
Diletant 173:7f938afb0447 952 hashParamTable[245].ref = &device.plcs.bias.settings.transfer.normalized[14];
Diletant 173:7f938afb0447 953 hashParamTable[245].size = sizeof(device.plcs.bias.settings.transfer.normalized[14]);
Diletant 173:7f938afb0447 954 hashParamTable[246].hash = 0x5f9bfdd2;
Diletant 173:7f938afb0447 955 hashParamTable[246].ref = &device.dither.noise.state.range;
Diletant 173:7f938afb0447 956 hashParamTable[246].size = sizeof(device.dither.noise.state.range);
Diletant 173:7f938afb0447 957 hashParamTable[247].hash = 0x611e152f;
Diletant 173:7f938afb0447 958 hashParamTable[247].ref = &device.sequencer.output.analog.settings.transfer.code[15];
Diletant 173:7f938afb0447 959 hashParamTable[247].size = sizeof(device.sequencer.output.analog.settings.transfer.code[15]);
Diletant 173:7f938afb0447 960 hashParamTable[248].hash = 0x617d53ad;
Diletant 173:7f938afb0447 961 hashParamTable[248].ref = &device.dither.detector.settings.filter.factor[10];
Diletant 173:7f938afb0447 962 hashParamTable[248].size = sizeof(device.dither.detector.settings.filter.factor[10]);
Diletant 173:7f938afb0447 963 hashParamTable[249].hash = 0x623a9cb0;
Diletant 173:7f938afb0447 964 hashParamTable[249].ref = &device.plcs.reset.up.duration[12];
Diletant 173:7f938afb0447 965 hashParamTable[249].size = sizeof(device.plcs.reset.up.duration[12]);
Diletant 173:7f938afb0447 966 hashParamTable[250].hash = 0x624f9da4;
Diletant 173:7f938afb0447 967 hashParamTable[250].ref = &device.dither.detector.settings.transfer.restored[9];
Diletant 173:7f938afb0447 968 hashParamTable[250].size = sizeof(device.dither.detector.settings.transfer.restored[9]);
Diletant 173:7f938afb0447 969 hashParamTable[251].hash = 0x62a7cc86;
Diletant 173:7f938afb0447 970 hashParamTable[251].ref = &device.controller.I2C.state.buffer[1];
Diletant 173:7f938afb0447 971 hashParamTable[251].size = sizeof(device.controller.I2C.state.buffer[1]);
Diletant 173:7f938afb0447 972 hashParamTable[252].hash = 0x62d2c512;
Diletant 173:7f938afb0447 973 hashParamTable[252].ref = &device.dither.amplitude.settings.transfer.correction[2];
Diletant 173:7f938afb0447 974 hashParamTable[252].size = sizeof(device.dither.amplitude.settings.transfer.correction[2]);
Diletant 173:7f938afb0447 975 hashParamTable[253].hash = 0x62f987c3;
Diletant 173:7f938afb0447 976 hashParamTable[253].ref = &device.dither.detector.settings.filter.factor[30];
Diletant 173:7f938afb0447 977 hashParamTable[253].size = sizeof(device.dither.detector.settings.filter.factor[30]);
Diletant 173:7f938afb0447 978 hashParamTable[254].hash = 0x633bbaf1;
Diletant 173:7f938afb0447 979 hashParamTable[254].ref = &device.dither.frequency.state.correction;
Diletant 173:7f938afb0447 980 hashParamTable[254].size = sizeof(device.dither.frequency.state.correction);
Diletant 173:7f938afb0447 981 hashParamTable[255].hash = 0x633bedf4;
Diletant 173:7f938afb0447 982 hashParamTable[255].ref = &device.dither.detector.settings.filter.factor[20];
Diletant 173:7f938afb0447 983 hashParamTable[255].size = sizeof(device.dither.detector.settings.filter.factor[20]);
Diletant 173:7f938afb0447 984 hashParamTable[256].hash = 0x633f2b2;
Diletant 173:7f938afb0447 985 hashParamTable[256].ref = &device.dither.pulse.state.max;
Diletant 173:7f938afb0447 986 hashParamTable[256].size = sizeof(device.dither.pulse.state.max);
Diletant 173:7f938afb0447 987 hashParamTable[257].hash = 0x634b9e76;
Diletant 173:7f938afb0447 988 hashParamTable[257].ref = &device.isacs.regulator.settings.start.scale;
Diletant 173:7f938afb0447 989 hashParamTable[257].size = sizeof(device.isacs.regulator.settings.start.scale);
Diletant 173:7f938afb0447 990 hashParamTable[258].hash = 0x635b8d69;
Diletant 173:7f938afb0447 991 hashParamTable[258].ref = &device.controller.I2C.settings.trigger;
Diletant 173:7f938afb0447 992 hashParamTable[258].size = sizeof(device.controller.I2C.settings.trigger);
Diletant 173:7f938afb0447 993 hashParamTable[259].hash = 0x64bd94a8;
Diletant 173:7f938afb0447 994 hashParamTable[259].ref = &device.dither.noise.state.disturbance;
Diletant 173:7f938afb0447 995 hashParamTable[259].size = sizeof(device.dither.noise.state.disturbance);
Diletant 173:7f938afb0447 996 hashParamTable[260].hash = 0x64d4e06b;
Diletant 173:7f938afb0447 997 hashParamTable[260].ref = &device.dither.detector.settings.transfer.raw[6];
Diletant 173:7f938afb0447 998 hashParamTable[260].size = sizeof(device.dither.detector.settings.transfer.raw[6]);
Diletant 173:7f938afb0447 999 hashParamTable[261].hash = 0x650187b9;
Diletant 173:7f938afb0447 1000 hashParamTable[261].ref = &device.isacs.output.settings.transfer.voltage[15];
Diletant 173:7f938afb0447 1001 hashParamTable[261].size = sizeof(device.isacs.output.settings.transfer.voltage[15]);
Diletant 173:7f938afb0447 1002 hashParamTable[262].hash = 0x6528390c;
Diletant 173:7f938afb0447 1003 hashParamTable[262].ref = &device.dither.amplitude.settings.transfer.points;
Diletant 173:7f938afb0447 1004 hashParamTable[262].size = sizeof(device.dither.amplitude.settings.transfer.points);
Diletant 173:7f938afb0447 1005 hashParamTable[263].hash = 0x655a1002;
Diletant 173:7f938afb0447 1006 hashParamTable[263].ref = &device.dither.amplitude.settings.transfer.correction[12];
Diletant 173:7f938afb0447 1007 hashParamTable[263].size = sizeof(device.dither.amplitude.settings.transfer.correction[12]);
Diletant 173:7f938afb0447 1008 hashParamTable[264].hash = 0x6588f9ab;
Diletant 173:7f938afb0447 1009 hashParamTable[264].ref = &device.plcs.bias.settings.transfer.raw[5];
Diletant 173:7f938afb0447 1010 hashParamTable[264].size = sizeof(device.plcs.bias.settings.transfer.raw[5]);
Diletant 173:7f938afb0447 1011 hashParamTable[265].hash = 0x658afef1;
Diletant 173:7f938afb0447 1012 hashParamTable[265].ref = &device.plcs.feedback.settings.transfer.raw[5];
Diletant 173:7f938afb0447 1013 hashParamTable[265].size = sizeof(device.plcs.feedback.settings.transfer.raw[5]);
Diletant 173:7f938afb0447 1014 hashParamTable[266].hash = 0x6593aec6;
Diletant 173:7f938afb0447 1015 hashParamTable[266].ref = &device.plcs.reset.up.temperature[4];
Diletant 173:7f938afb0447 1016 hashParamTable[266].size = sizeof(device.plcs.reset.up.temperature[4]);
Diletant 173:7f938afb0447 1017 hashParamTable[267].hash = 0x65e8f720;
Diletant 173:7f938afb0447 1018 hashParamTable[267].ref = &device.plcs.reset.down.voltage[9];
Diletant 173:7f938afb0447 1019 hashParamTable[267].size = sizeof(device.plcs.reset.down.voltage[9]);
Diletant 173:7f938afb0447 1020 hashParamTable[268].hash = 0x65eb0e81;
Diletant 173:7f938afb0447 1021 hashParamTable[268].ref = &device.plcs.feedback.settings.transfer.raw[13];
Diletant 173:7f938afb0447 1022 hashParamTable[268].size = sizeof(device.plcs.feedback.settings.transfer.raw[13]);
Diletant 173:7f938afb0447 1023 hashParamTable[269].hash = 0x664c6cbe;
Diletant 173:7f938afb0447 1024 hashParamTable[269].ref = &device.controller.timer[0].state.TCR;
Diletant 173:7f938afb0447 1025 hashParamTable[269].size = sizeof(device.controller.timer[0].state.TCR);
Diletant 173:7f938afb0447 1026 hashParamTable[270].hash = 0x664ca255;
Diletant 173:7f938afb0447 1027 hashParamTable[270].ref = &device.plcs.output.state.enabled;
Diletant 173:7f938afb0447 1028 hashParamTable[270].size = sizeof(device.plcs.output.state.enabled);
Diletant 173:7f938afb0447 1029 hashParamTable[271].hash = 0x666063c4;
Diletant 173:7f938afb0447 1030 hashParamTable[271].ref = &device.isacs.output.settings.transfer.voltage[5];
Diletant 173:7f938afb0447 1031 hashParamTable[271].size = sizeof(device.isacs.output.settings.transfer.voltage[5]);
Diletant 173:7f938afb0447 1032 hashParamTable[272].hash = 0x667a2c04;
Diletant 173:7f938afb0447 1033 hashParamTable[272].ref = &device.isacs.input.settings.transfer.code[5];
Diletant 173:7f938afb0447 1034 hashParamTable[272].size = sizeof(device.isacs.input.settings.transfer.code[5]);
Diletant 173:7f938afb0447 1035 hashParamTable[273].hash = 0x674eeb85;
Diletant 173:7f938afb0447 1036 hashParamTable[273].ref = &device.controller.uart[0].state.DLL;
Diletant 173:7f938afb0447 1037 hashParamTable[273].size = sizeof(device.controller.uart[0].state.DLL);
Diletant 173:7f938afb0447 1038 hashParamTable[274].hash = 0x6771d50;
Diletant 173:7f938afb0447 1039 hashParamTable[274].ref = &device.lightUp.settings.sequence;
Diletant 173:7f938afb0447 1040 hashParamTable[274].size = sizeof(device.lightUp.settings.sequence);
Diletant 173:7f938afb0447 1041 hashParamTable[275].hash = 0x67836a1a;
Diletant 173:7f938afb0447 1042 hashParamTable[275].ref = &device.plcs.regulator.settings.transfer.error[15];
Diletant 173:7f938afb0447 1043 hashParamTable[275].size = sizeof(device.plcs.regulator.settings.transfer.error[15]);
Diletant 173:7f938afb0447 1044 hashParamTable[276].hash = 0x688a0a4d;
Diletant 173:7f938afb0447 1045 hashParamTable[276].ref = &device.plcs.reset.down.temperature[1];
Diletant 173:7f938afb0447 1046 hashParamTable[276].size = sizeof(device.plcs.reset.down.temperature[1]);
Diletant 173:7f938afb0447 1047 hashParamTable[277].hash = 0x688f56ab;
Diletant 173:7f938afb0447 1048 hashParamTable[277].ref = &device.isacs.regulator.state.scale;
Diletant 173:7f938afb0447 1049 hashParamTable[277].size = sizeof(device.isacs.regulator.state.scale);
Diletant 173:7f938afb0447 1050 hashParamTable[278].hash = 0x689465a0;
Diletant 173:7f938afb0447 1051 hashParamTable[278].ref = &device.dither.amplitude.settings.transfer.error[4];
Diletant 173:7f938afb0447 1052 hashParamTable[278].size = sizeof(device.dither.amplitude.settings.transfer.error[4]);
Diletant 173:7f938afb0447 1053 hashParamTable[279].hash = 0x68a0dadb;
Diletant 173:7f938afb0447 1054 hashParamTable[279].ref = &device.isacs.input.settings.transfer.voltage[11];
Diletant 173:7f938afb0447 1055 hashParamTable[279].size = sizeof(device.isacs.input.settings.transfer.voltage[11]);
Diletant 173:7f938afb0447 1056 hashParamTable[280].hash = 0x69a22ff9;
Diletant 173:7f938afb0447 1057 hashParamTable[280].ref = &device.dither.detector.settings.filter.factor[3];
Diletant 173:7f938afb0447 1058 hashParamTable[280].size = sizeof(device.dither.detector.settings.filter.factor[3]);
Diletant 173:7f938afb0447 1059 hashParamTable[281].hash = 0x6a1f9ca5;
Diletant 173:7f938afb0447 1060 hashParamTable[281].ref = &device.dither.frequency.settings.transfer.correction[8];
Diletant 173:7f938afb0447 1061 hashParamTable[281].size = sizeof(device.dither.frequency.settings.transfer.correction[8]);
Diletant 173:7f938afb0447 1062 hashParamTable[282].hash = 0x6acb06fc;
Diletant 173:7f938afb0447 1063 hashParamTable[282].ref = &device.controller.SSP.in[1];
Diletant 173:7f938afb0447 1064 hashParamTable[282].size = sizeof(device.controller.SSP.in[1]);
Diletant 173:7f938afb0447 1065 hashParamTable[283].hash = 0x6b586b6e;
Diletant 173:7f938afb0447 1066 hashParamTable[283].ref = &device.plcs.output.settings.transfer.code[5];
Diletant 173:7f938afb0447 1067 hashParamTable[283].size = sizeof(device.plcs.output.settings.transfer.code[5]);
Diletant 173:7f938afb0447 1068 hashParamTable[284].hash = 0x6b9ad924;
Diletant 173:7f938afb0447 1069 hashParamTable[284].ref = &device.dither.frequency.settings.transfer.correction[14];
Diletant 173:7f938afb0447 1070 hashParamTable[284].size = sizeof(device.dither.frequency.settings.transfer.correction[14]);
Diletant 173:7f938afb0447 1071 hashParamTable[285].hash = 0x6be0016;
Diletant 173:7f938afb0447 1072 hashParamTable[285].ref = &device.dither.amplitude.settings.transfer.correction[6];
Diletant 173:7f938afb0447 1073 hashParamTable[285].size = sizeof(device.dither.amplitude.settings.transfer.correction[6]);
Diletant 173:7f938afb0447 1074 hashParamTable[286].hash = 0x6c48cd09;
Diletant 173:7f938afb0447 1075 hashParamTable[286].ref = &device.plcs.reset.state.countdown;
Diletant 173:7f938afb0447 1076 hashParamTable[286].size = sizeof(device.plcs.reset.state.countdown);
Diletant 173:7f938afb0447 1077 hashParamTable[287].hash = 0x6c5c4053;
Diletant 173:7f938afb0447 1078 hashParamTable[287].ref = &device.plcs.feedback.settings.transfer.normalized[5];
Diletant 173:7f938afb0447 1079 hashParamTable[287].size = sizeof(device.plcs.feedback.settings.transfer.normalized[5]);
Diletant 173:7f938afb0447 1080 hashParamTable[288].hash = 0x6cb0982;
Diletant 173:7f938afb0447 1081 hashParamTable[288].ref = &device.controller.I2C.state.buffer[5];
Diletant 173:7f938afb0447 1082 hashParamTable[288].size = sizeof(device.controller.I2C.state.buffer[5]);
Diletant 173:7f938afb0447 1083 hashParamTable[289].hash = 0x6ce82940;
Diletant 173:7f938afb0447 1084 hashParamTable[289].ref = &device.dither.amplitude.state.error;
Diletant 173:7f938afb0447 1085 hashParamTable[289].size = sizeof(device.dither.amplitude.state.error);
Diletant 173:7f938afb0447 1086 hashParamTable[290].hash = 0x6e6da5dd;
Diletant 173:7f938afb0447 1087 hashParamTable[290].ref = &device.dither.detector.settings.transfer.raw[12];
Diletant 173:7f938afb0447 1088 hashParamTable[290].size = sizeof(device.dither.detector.settings.transfer.raw[12]);
Diletant 173:7f938afb0447 1089 hashParamTable[291].hash = 0x6e881ccf;
Diletant 173:7f938afb0447 1090 hashParamTable[291].ref = &device.dither.frequency.state.error;
Diletant 173:7f938afb0447 1091 hashParamTable[291].size = sizeof(device.dither.frequency.state.error);
Diletant 173:7f938afb0447 1092 hashParamTable[292].hash = 0x6eeca6bc;
Diletant 173:7f938afb0447 1093 hashParamTable[292].ref = &device.dither.detector.settings.transfer.restored[12];
Diletant 173:7f938afb0447 1094 hashParamTable[292].size = sizeof(device.dither.detector.settings.transfer.restored[12]);
Diletant 173:7f938afb0447 1095 hashParamTable[293].hash = 0x6ef23950;
Diletant 173:7f938afb0447 1096 hashParamTable[293].ref = &device.plcs.regulator.settings.transfer.correction[3];
Diletant 173:7f938afb0447 1097 hashParamTable[293].size = sizeof(device.plcs.regulator.settings.transfer.correction[3]);
Diletant 173:7f938afb0447 1098 hashParamTable[294].hash = 0x6f0c7879;
Diletant 173:7f938afb0447 1099 hashParamTable[294].ref = &device.plcs.feedback.settings.transfer.normalized[11];
Diletant 173:7f938afb0447 1100 hashParamTable[294].size = sizeof(device.plcs.feedback.settings.transfer.normalized[11]);
Diletant 173:7f938afb0447 1101 hashParamTable[295].hash = 0x6f9fab73;
Diletant 173:7f938afb0447 1102 hashParamTable[295].ref = &device.dither.amplitude.settings.transfer.error[11];
Diletant 173:7f938afb0447 1103 hashParamTable[295].size = sizeof(device.dither.amplitude.settings.transfer.error[11]);
Diletant 173:7f938afb0447 1104 hashParamTable[296].hash = 0x70b91eb8;
Diletant 173:7f938afb0447 1105 hashParamTable[296].ref = &device.dither.detector.settings.filter.factor[2];
Diletant 173:7f938afb0447 1106 hashParamTable[296].size = sizeof(device.dither.detector.settings.filter.factor[2]);
Diletant 173:7f938afb0447 1107 hashParamTable[297].hash = 0x70c12b2;
Diletant 173:7f938afb0447 1108 hashParamTable[297].ref = &device.dither.pulse.settings.min;
Diletant 173:7f938afb0447 1109 hashParamTable[297].size = sizeof(device.dither.pulse.settings.min);
Diletant 173:7f938afb0447 1110 hashParamTable[298].hash = 0x7110b55a;
Diletant 173:7f938afb0447 1111 hashParamTable[298].ref = &device.plcs.bias.state.raw;
Diletant 173:7f938afb0447 1112 hashParamTable[298].size = sizeof(device.plcs.bias.state.raw);
Diletant 173:7f938afb0447 1113 hashParamTable[299].hash = 0x718f54e1;
Diletant 173:7f938afb0447 1114 hashParamTable[299].ref = &device.dither.amplitude.settings.transfer.error[5];
Diletant 173:7f938afb0447 1115 hashParamTable[299].size = sizeof(device.dither.amplitude.settings.transfer.error[5]);
Diletant 173:7f938afb0447 1116 hashParamTable[300].hash = 0x71913b0c;
Diletant 173:7f938afb0447 1117 hashParamTable[300].ref = &device.plcs.reset.down.temperature[0];
Diletant 173:7f938afb0447 1118 hashParamTable[300].size = sizeof(device.plcs.reset.down.temperature[0]);
Diletant 173:7f938afb0447 1119 hashParamTable[301].hash = 0x71bbeb9a;
Diletant 173:7f938afb0447 1120 hashParamTable[301].ref = &device.isacs.input.settings.transfer.voltage[10];
Diletant 173:7f938afb0447 1121 hashParamTable[301].size = sizeof(device.isacs.input.settings.transfer.voltage[10]);
Diletant 173:7f938afb0447 1122 hashParamTable[302].hash = 0x72435a2f;
Diletant 173:7f938afb0447 1123 hashParamTable[302].ref = &device.plcs.output.settings.transfer.code[4];
Diletant 173:7f938afb0447 1124 hashParamTable[302].size = sizeof(device.plcs.output.settings.transfer.code[4]);
Diletant 173:7f938afb0447 1125 hashParamTable[303].hash = 0x7281e865;
Diletant 173:7f938afb0447 1126 hashParamTable[303].ref = &device.dither.frequency.settings.transfer.correction[15];
Diletant 173:7f938afb0447 1127 hashParamTable[303].size = sizeof(device.dither.frequency.settings.transfer.correction[15]);
Diletant 173:7f938afb0447 1128 hashParamTable[304].hash = 0x7304ade4;
Diletant 173:7f938afb0447 1129 hashParamTable[304].ref = &device.dither.frequency.settings.transfer.correction[9];
Diletant 173:7f938afb0447 1130 hashParamTable[304].size = sizeof(device.dither.frequency.settings.transfer.correction[9]);
Diletant 173:7f938afb0447 1131 hashParamTable[305].hash = 0x73d037bd;
Diletant 173:7f938afb0447 1132 hashParamTable[305].ref = &device.controller.SSP.in[0];
Diletant 173:7f938afb0447 1133 hashParamTable[305].size = sizeof(device.controller.SSP.in[0]);
Diletant 173:7f938afb0447 1134 hashParamTable[306].hash = 0x749c63a6;
Diletant 173:7f938afb0447 1135 hashParamTable[306].ref = &device.isacs.potentiometers.state.a;
Diletant 173:7f938afb0447 1136 hashParamTable[306].size = sizeof(device.isacs.potentiometers.state.a);
Diletant 173:7f938afb0447 1137 hashParamTable[307].hash = 0x74ee6c98;
Diletant 173:7f938afb0447 1138 hashParamTable[307].ref = &device.dither.frequency.state.enabled;
Diletant 173:7f938afb0447 1139 hashParamTable[307].size = sizeof(device.dither.frequency.state.enabled);
Diletant 173:7f938afb0447 1140 hashParamTable[308].hash = 0x75477112;
Diletant 173:7f938afb0447 1141 hashParamTable[308].ref = &device.plcs.feedback.settings.transfer.normalized[4];
Diletant 173:7f938afb0447 1142 hashParamTable[308].size = sizeof(device.plcs.feedback.settings.transfer.normalized[4]);
Diletant 173:7f938afb0447 1143 hashParamTable[309].hash = 0x756ec723;
Diletant 173:7f938afb0447 1144 hashParamTable[309].ref = &device.sequencer.output.logic.state.enabled;
Diletant 173:7f938afb0447 1145 hashParamTable[309].size = sizeof(device.sequencer.output.logic.state.enabled);
Diletant 173:7f938afb0447 1146 hashParamTable[310].hash = 0x75728f0;
Diletant 173:7f938afb0447 1147 hashParamTable[310].ref = &device.dither.detector.settings.filter.factor[24];
Diletant 173:7f938afb0447 1148 hashParamTable[310].size = sizeof(device.dither.detector.settings.filter.factor[24]);
Diletant 173:7f938afb0447 1149 hashParamTable[311].hash = 0x75bbf441;
Diletant 173:7f938afb0447 1150 hashParamTable[311].ref = &device.controller.timer[0].state.MCR;
Diletant 173:7f938afb0447 1151 hashParamTable[311].size = sizeof(device.controller.timer[0].state.MCR);
Diletant 173:7f938afb0447 1152 hashParamTable[312].hash = 0x76174938;
Diletant 173:7f938afb0447 1153 hashParamTable[312].ref = &device.plcs.feedback.settings.transfer.normalized[10];
Diletant 173:7f938afb0447 1154 hashParamTable[312].size = sizeof(device.plcs.feedback.settings.transfer.normalized[10]);
Diletant 173:7f938afb0447 1155 hashParamTable[313].hash = 0x76849a32;
Diletant 173:7f938afb0447 1156 hashParamTable[313].ref = &device.dither.amplitude.settings.transfer.error[10];
Diletant 173:7f938afb0447 1157 hashParamTable[313].size = sizeof(device.dither.amplitude.settings.transfer.error[10]);
Diletant 173:7f938afb0447 1158 hashParamTable[314].hash = 0x7776949c;
Diletant 173:7f938afb0447 1159 hashParamTable[314].ref = &device.dither.detector.settings.transfer.raw[13];
Diletant 173:7f938afb0447 1160 hashParamTable[314].size = sizeof(device.dither.detector.settings.transfer.raw[13]);
Diletant 173:7f938afb0447 1161 hashParamTable[315].hash = 0x77e90811;
Diletant 173:7f938afb0447 1162 hashParamTable[315].ref = &device.plcs.regulator.settings.transfer.correction[2];
Diletant 173:7f938afb0447 1163 hashParamTable[315].size = sizeof(device.plcs.regulator.settings.transfer.correction[2]);
Diletant 173:7f938afb0447 1164 hashParamTable[316].hash = 0x77f797fd;
Diletant 173:7f938afb0447 1165 hashParamTable[316].ref = &device.dither.detector.settings.transfer.restored[13];
Diletant 173:7f938afb0447 1166 hashParamTable[316].size = sizeof(device.dither.detector.settings.transfer.restored[13]);
Diletant 173:7f938afb0447 1167 hashParamTable[317].hash = 0x7805246e;
Diletant 173:7f938afb0447 1168 hashParamTable[317].ref = &device.sequencer.output.analog.settings.transfer.code[14];
Diletant 173:7f938afb0447 1169 hashParamTable[317].size = sizeof(device.sequencer.output.analog.settings.transfer.code[14]);
Diletant 173:7f938afb0447 1170 hashParamTable[318].hash = 0x786662ec;
Diletant 173:7f938afb0447 1171 hashParamTable[318].ref = &device.dither.detector.settings.filter.factor[11];
Diletant 173:7f938afb0447 1172 hashParamTable[318].size = sizeof(device.dither.detector.settings.filter.factor[11]);
Diletant 173:7f938afb0447 1173 hashParamTable[319].hash = 0x78bc99a7;
Diletant 173:7f938afb0447 1174 hashParamTable[319].ref = &device.dither.detector.state.phase;
Diletant 173:7f938afb0447 1175 hashParamTable[319].size = sizeof(device.dither.detector.state.phase);
Diletant 173:7f938afb0447 1176 hashParamTable[320].hash = 0x7a20dcb5;
Diletant 173:7f938afb0447 1177 hashParamTable[320].ref = &device.dither.detector.settings.filter.factor[21];
Diletant 173:7f938afb0447 1178 hashParamTable[320].size = sizeof(device.dither.detector.settings.filter.factor[21]);
Diletant 173:7f938afb0447 1179 hashParamTable[321].hash = 0x7a3dbeb9;
Diletant 173:7f938afb0447 1180 hashParamTable[321].ref = &device.dither.amplitude.settings.enabled;
Diletant 173:7f938afb0447 1181 hashParamTable[321].size = sizeof(device.dither.amplitude.settings.enabled);
Diletant 173:7f938afb0447 1182 hashParamTable[322].hash = 0x7ab9453b;
Diletant 173:7f938afb0447 1183 hashParamTable[322].ref = &device.plcs.output.state.sequencer;
Diletant 173:7f938afb0447 1184 hashParamTable[322].size = sizeof(device.plcs.output.state.sequencer);
Diletant 173:7f938afb0447 1185 hashParamTable[323].hash = 0x7af265e9;
Diletant 173:7f938afb0447 1186 hashParamTable[323].ref = &device.isacs.input.settings.transfer.points;
Diletant 173:7f938afb0447 1187 hashParamTable[323].size = sizeof(device.isacs.input.settings.transfer.points);
Diletant 173:7f938afb0447 1188 hashParamTable[324].hash = 0x7b21adf1;
Diletant 173:7f938afb0447 1189 hashParamTable[324].ref = &device.plcs.reset.up.duration[13];
Diletant 173:7f938afb0447 1190 hashParamTable[324].size = sizeof(device.plcs.reset.up.duration[13]);
Diletant 173:7f938afb0447 1191 hashParamTable[325].hash = 0x7b54ace5;
Diletant 173:7f938afb0447 1192 hashParamTable[325].ref = &device.dither.detector.settings.transfer.restored[8];
Diletant 173:7f938afb0447 1193 hashParamTable[325].size = sizeof(device.dither.detector.settings.transfer.restored[8]);
Diletant 173:7f938afb0447 1194 hashParamTable[326].hash = 0x7bbcfdc7;
Diletant 173:7f938afb0447 1195 hashParamTable[326].ref = &device.controller.I2C.state.buffer[0];
Diletant 173:7f938afb0447 1196 hashParamTable[326].size = sizeof(device.controller.I2C.state.buffer[0]);
Diletant 173:7f938afb0447 1197 hashParamTable[327].hash = 0x7bc9f453;
Diletant 173:7f938afb0447 1198 hashParamTable[327].ref = &device.dither.amplitude.settings.transfer.correction[3];
Diletant 173:7f938afb0447 1199 hashParamTable[327].size = sizeof(device.dither.amplitude.settings.transfer.correction[3]);
Diletant 173:7f938afb0447 1200 hashParamTable[328].hash = 0x7be2b682;
Diletant 173:7f938afb0447 1201 hashParamTable[328].ref = &device.dither.detector.settings.filter.factor[31];
Diletant 173:7f938afb0447 1202 hashParamTable[328].size = sizeof(device.dither.detector.settings.filter.factor[31]);
Diletant 173:7f938afb0447 1203 hashParamTable[329].hash = 0x7c1ab6f8;
Diletant 173:7f938afb0447 1204 hashParamTable[329].ref = &device.isacs.output.settings.transfer.voltage[14];
Diletant 173:7f938afb0447 1205 hashParamTable[329].size = sizeof(device.isacs.output.settings.transfer.voltage[14]);
Diletant 173:7f938afb0447 1206 hashParamTable[330].hash = 0x7c412143;
Diletant 173:7f938afb0447 1207 hashParamTable[330].ref = &device.dither.amplitude.settings.transfer.correction[13];
Diletant 173:7f938afb0447 1208 hashParamTable[330].size = sizeof(device.dither.amplitude.settings.transfer.correction[13]);
Diletant 173:7f938afb0447 1209 hashParamTable[331].hash = 0x7c889f87;
Diletant 173:7f938afb0447 1210 hashParamTable[331].ref = &device.plcs.reset.up.temperature[5];
Diletant 173:7f938afb0447 1211 hashParamTable[331].size = sizeof(device.plcs.reset.up.temperature[5]);
Diletant 173:7f938afb0447 1212 hashParamTable[332].hash = 0x7c91cfb0;
Diletant 173:7f938afb0447 1213 hashParamTable[332].ref = &device.plcs.feedback.settings.transfer.raw[4];
Diletant 173:7f938afb0447 1214 hashParamTable[332].size = sizeof(device.plcs.feedback.settings.transfer.raw[4]);
Diletant 173:7f938afb0447 1215 hashParamTable[333].hash = 0x7c93c8ea;
Diletant 173:7f938afb0447 1216 hashParamTable[333].ref = &device.plcs.bias.settings.transfer.raw[4];
Diletant 173:7f938afb0447 1217 hashParamTable[333].size = sizeof(device.plcs.bias.settings.transfer.raw[4]);
Diletant 173:7f938afb0447 1218 hashParamTable[334].hash = 0x7cf03fc0;
Diletant 173:7f938afb0447 1219 hashParamTable[334].ref = &device.plcs.feedback.settings.transfer.raw[12];
Diletant 173:7f938afb0447 1220 hashParamTable[334].size = sizeof(device.plcs.feedback.settings.transfer.raw[12]);
Diletant 173:7f938afb0447 1221 hashParamTable[335].hash = 0x7cf3c661;
Diletant 173:7f938afb0447 1222 hashParamTable[335].ref = &device.plcs.reset.down.voltage[8];
Diletant 173:7f938afb0447 1223 hashParamTable[335].size = sizeof(device.plcs.reset.down.voltage[8]);
Diletant 173:7f938afb0447 1224 hashParamTable[336].hash = 0x7d95c657;
Diletant 173:7f938afb0447 1225 hashParamTable[336].ref = &device.isacs.potentiometers.settings.a;
Diletant 173:7f938afb0447 1226 hashParamTable[336].size = sizeof(device.isacs.potentiometers.settings.a);
Diletant 173:7f938afb0447 1227 hashParamTable[337].hash = 0x7da5766a;
Diletant 173:7f938afb0447 1228 hashParamTable[337].ref = &device.dither.noise.state.amplitude;
Diletant 173:7f938afb0447 1229 hashParamTable[337].size = sizeof(device.dither.noise.state.amplitude);
Diletant 173:7f938afb0447 1230 hashParamTable[338].hash = 0x7dcfd12a;
Diletant 173:7f938afb0447 1231 hashParamTable[338].ref = &device.dither.detector.settings.transfer.raw[7];
Diletant 173:7f938afb0447 1232 hashParamTable[338].size = sizeof(device.dither.detector.settings.transfer.raw[7]);
Diletant 173:7f938afb0447 1233 hashParamTable[339].hash = 0x7e985b5b;
Diletant 173:7f938afb0447 1234 hashParamTable[339].ref = &device.plcs.regulator.settings.transfer.error[14];
Diletant 173:7f938afb0447 1235 hashParamTable[339].size = sizeof(device.plcs.regulator.settings.transfer.error[14]);
Diletant 173:7f938afb0447 1236 hashParamTable[340].hash = 0x7f4645bb;
Diletant 173:7f938afb0447 1237 hashParamTable[340].ref = &device.dither.cycle.state.pin2;
Diletant 173:7f938afb0447 1238 hashParamTable[340].size = sizeof(device.dither.cycle.state.pin2);
Diletant 173:7f938afb0447 1239 hashParamTable[341].hash = 0x7f611d45;
Diletant 173:7f938afb0447 1240 hashParamTable[341].ref = &device.isacs.input.settings.transfer.code[4];
Diletant 173:7f938afb0447 1241 hashParamTable[341].size = sizeof(device.isacs.input.settings.transfer.code[4]);
Diletant 173:7f938afb0447 1242 hashParamTable[342].hash = 0x7f7b5285;
Diletant 173:7f938afb0447 1243 hashParamTable[342].ref = &device.isacs.output.settings.transfer.voltage[4];
Diletant 173:7f938afb0447 1244 hashParamTable[342].size = sizeof(device.isacs.output.settings.transfer.voltage[4]);
Diletant 173:7f938afb0447 1245 hashParamTable[343].hash = 0x80ede959;
Diletant 173:7f938afb0447 1246 hashParamTable[343].ref = &device.dither.noise.settings.amplitude;
Diletant 173:7f938afb0447 1247 hashParamTable[343].size = sizeof(device.dither.noise.settings.amplitude);
Diletant 173:7f938afb0447 1248 hashParamTable[344].hash = 0x81261cd9;
Diletant 173:7f938afb0447 1249 hashParamTable[344].ref = &device.dither.amplitude.settings.transfer.correction[9];
Diletant 173:7f938afb0447 1250 hashParamTable[344].size = sizeof(device.dither.amplitude.settings.transfer.correction[9]);
Diletant 173:7f938afb0447 1251 hashParamTable[345].hash = 0x81bb446f;
Diletant 173:7f938afb0447 1252 hashParamTable[345].ref = &device.dither.detector.settings.transfer.restored[2];
Diletant 173:7f938afb0447 1253 hashParamTable[345].size = sizeof(device.dither.detector.settings.transfer.restored[2]);
Diletant 173:7f938afb0447 1254 hashParamTable[346].hash = 0x8208e177;
Diletant 173:7f938afb0447 1255 hashParamTable[346].ref = &device.plcs.regulator.settings.enabled;
Diletant 173:7f938afb0447 1256 hashParamTable[346].size = sizeof(device.plcs.regulator.settings.enabled);
Diletant 173:7f938afb0447 1257 hashParamTable[347].hash = 0x82222d8a;
Diletant 173:7f938afb0447 1258 hashParamTable[347].ref = &device.plcs.output.settings.transfer.voltage[5];
Diletant 173:7f938afb0447 1259 hashParamTable[347].size = sizeof(device.plcs.output.settings.transfer.voltage[5]);
Diletant 173:7f938afb0447 1260 hashParamTable[348].hash = 0x8249508a;
Diletant 173:7f938afb0447 1261 hashParamTable[348].ref = &device.sequencer.sampler.settings.sequence[44];
Diletant 173:7f938afb0447 1262 hashParamTable[348].size = sizeof(device.sequencer.sampler.settings.sequence[44]);
Diletant 173:7f938afb0447 1263 hashParamTable[349].hash = 0x82bd8086;
Diletant 173:7f938afb0447 1264 hashParamTable[349].ref = &device.plcs.bias.state.average;
Diletant 173:7f938afb0447 1265 hashParamTable[349].size = sizeof(device.plcs.bias.state.average);
Diletant 173:7f938afb0447 1266 hashParamTable[350].hash = 0x82f85228;
Diletant 173:7f938afb0447 1267 hashParamTable[350].ref = &device.controller.uart[1].state.FCR;
Diletant 173:7f938afb0447 1268 hashParamTable[350].size = sizeof(device.controller.uart[1].state.FCR);
Diletant 173:7f938afb0447 1269 hashParamTable[351].hash = 0x8308557;
Diletant 173:7f938afb0447 1270 hashParamTable[351].ref = &device.plcs.feedback.settings.transfer.normalized[1];
Diletant 173:7f938afb0447 1271 hashParamTable[351].size = sizeof(device.plcs.feedback.settings.transfer.normalized[1]);
Diletant 173:7f938afb0447 1272 hashParamTable[352].hash = 0x8312ab03;
Diletant 173:7f938afb0447 1273 hashParamTable[352].ref = &device.isacs.input.settings.transfer.code[10];
Diletant 173:7f938afb0447 1274 hashParamTable[352].size = sizeof(device.isacs.input.settings.transfer.code[10]);
Diletant 173:7f938afb0447 1275 hashParamTable[353].hash = 0x83843183;
Diletant 173:7f938afb0447 1276 hashParamTable[353].ref = &device.user.address;
Diletant 173:7f938afb0447 1277 hashParamTable[353].size = sizeof(device.user.address);
Diletant 173:7f938afb0447 1278 hashParamTable[354].hash = 0x838b3abd;
Diletant 173:7f938afb0447 1279 hashParamTable[354].ref = &device.sequencer.sampler.settings.sequence[54];
Diletant 173:7f938afb0447 1280 hashParamTable[354].size = sizeof(device.sequencer.sampler.settings.sequence[54]);
Diletant 173:7f938afb0447 1281 hashParamTable[355].hash = 0x84829261;
Diletant 173:7f938afb0447 1282 hashParamTable[355].ref = &device.sequencer.sampler.settings.sequence[14];
Diletant 173:7f938afb0447 1283 hashParamTable[355].size = sizeof(device.sequencer.sampler.settings.sequence[14]);
Diletant 173:7f938afb0447 1284 hashParamTable[356].hash = 0x856465c0;
Diletant 173:7f938afb0447 1285 hashParamTable[356].ref = &device.dither.noise.state.enabled;
Diletant 173:7f938afb0447 1286 hashParamTable[356].size = sizeof(device.dither.noise.state.enabled);
Diletant 173:7f938afb0447 1287 hashParamTable[357].hash = 0x85aa81dc;
Diletant 173:7f938afb0447 1288 hashParamTable[357].ref = &device.dither.frequency.settings.transfer.error[1];
Diletant 173:7f938afb0447 1289 hashParamTable[357].size = sizeof(device.dither.frequency.settings.transfer.error[1]);
Diletant 173:7f938afb0447 1290 hashParamTable[358].hash = 0x85d98bb0;
Diletant 173:7f938afb0447 1291 hashParamTable[358].ref = &device.plcs.reset.down.temperature[13];
Diletant 173:7f938afb0447 1292 hashParamTable[358].size = sizeof(device.plcs.reset.down.temperature[13]);
Diletant 173:7f938afb0447 1293 hashParamTable[359].hash = 0x85ded725;
Diletant 173:7f938afb0447 1294 hashParamTable[359].ref = &device.controller.timer[0].state.MR0;
Diletant 173:7f938afb0447 1295 hashParamTable[359].size = sizeof(device.controller.timer[0].state.MR0);
Diletant 173:7f938afb0447 1296 hashParamTable[360].hash = 0x85f1a258;
Diletant 173:7f938afb0447 1297 hashParamTable[360].ref = &device.sequencer.sampler.settings.sequence[4];
Diletant 173:7f938afb0447 1298 hashParamTable[360].size = sizeof(device.sequencer.sampler.settings.sequence[4]);
Diletant 173:7f938afb0447 1299 hashParamTable[361].hash = 0x85f6b5a0;
Diletant 173:7f938afb0447 1300 hashParamTable[361].ref = &device.plcs.reset.up.duration[6];
Diletant 173:7f938afb0447 1301 hashParamTable[361].size = sizeof(device.plcs.reset.up.duration[6]);
Diletant 173:7f938afb0447 1302 hashParamTable[362].hash = 0x8617a894;
Diletant 173:7f938afb0447 1303 hashParamTable[362].ref = &device.isacs.input.settings.transfer.voltage[6];
Diletant 173:7f938afb0447 1304 hashParamTable[362].size = sizeof(device.isacs.input.settings.transfer.voltage[6]);
Diletant 173:7f938afb0447 1305 hashParamTable[363].hash = 0x861c2eeb;
Diletant 173:7f938afb0447 1306 hashParamTable[363].ref = &device.plcs.reset.down.voltage[2];
Diletant 173:7f938afb0447 1307 hashParamTable[363].size = sizeof(device.plcs.reset.down.voltage[2]);
Diletant 173:7f938afb0447 1308 hashParamTable[364].hash = 0x865e7929;
Diletant 173:7f938afb0447 1309 hashParamTable[364].ref = &device.isacs.output.settings.transfer.code[5];
Diletant 173:7f938afb0447 1310 hashParamTable[364].size = sizeof(device.isacs.output.settings.transfer.code[5]);
Diletant 173:7f938afb0447 1311 hashParamTable[365].hash = 0x868be0d4;
Diletant 173:7f938afb0447 1312 hashParamTable[365].ref = &device.sequencer.output.analog.settings.transfer.voltage[15];
Diletant 173:7f938afb0447 1313 hashParamTable[365].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[15]);
Diletant 173:7f938afb0447 1314 hashParamTable[366].hash = 0x86c42c38;
Diletant 173:7f938afb0447 1315 hashParamTable[366].ref = &device.sequencer.sampler.settings.sequence[24];
Diletant 173:7f938afb0447 1316 hashParamTable[366].size = sizeof(device.sequencer.sampler.settings.sequence[24]);
Diletant 173:7f938afb0447 1317 hashParamTable[367].hash = 0x8706460f;
Diletant 173:7f938afb0447 1318 hashParamTable[367].ref = &device.sequencer.sampler.settings.sequence[34];
Diletant 173:7f938afb0447 1319 hashParamTable[367].size = sizeof(device.sequencer.sampler.settings.sequence[34]);
Diletant 173:7f938afb0447 1320 hashParamTable[368].hash = 0x87501be1;
Diletant 173:7f938afb0447 1321 hashParamTable[368].ref = &device.sequencer.output.analog.state.voltage;
Diletant 173:7f938afb0447 1322 hashParamTable[368].size = sizeof(device.sequencer.output.analog.state.voltage);
Diletant 173:7f938afb0447 1323 hashParamTable[369].hash = 0x87effade;
Diletant 173:7f938afb0447 1324 hashParamTable[369].ref = &device.plcs.reset.up.voltage[11];
Diletant 173:7f938afb0447 1325 hashParamTable[369].size = sizeof(device.plcs.reset.up.voltage[11]);
Diletant 173:7f938afb0447 1326 hashParamTable[370].hash = 0x87fa4992;
Diletant 173:7f938afb0447 1327 hashParamTable[370].ref = &device.plcs.output.settings.start.voltage;
Diletant 173:7f938afb0447 1328 hashParamTable[370].size = sizeof(device.plcs.output.settings.start.voltage);
Diletant 173:7f938afb0447 1329 hashParamTable[371].hash = 0x88eb88ec;
Diletant 173:7f938afb0447 1330 hashParamTable[371].ref = &device.plcs.reset.down.duration[6];
Diletant 173:7f938afb0447 1331 hashParamTable[371].size = sizeof(device.plcs.reset.down.duration[6]);
Diletant 173:7f938afb0447 1332 hashParamTable[372].hash = 0x891eca07;
Diletant 173:7f938afb0447 1333 hashParamTable[372].ref = &device.plcs.regulator.settings.transfer.error[5];
Diletant 173:7f938afb0447 1334 hashParamTable[372].size = sizeof(device.plcs.regulator.settings.transfer.error[5]);
Diletant 173:7f938afb0447 1335 hashParamTable[373].hash = 0x89eb456e;
Diletant 173:7f938afb0447 1336 hashParamTable[373].ref = &device.dither.frequency.settings.transfer.correction[3];
Diletant 173:7f938afb0447 1337 hashParamTable[373].size = sizeof(device.dither.frequency.settings.transfer.correction[3]);
Diletant 173:7f938afb0447 1338 hashParamTable[374].hash = 0x89f65d25;
Diletant 173:7f938afb0447 1339 hashParamTable[374].ref = &device.plcs.output.settings.transfer.voltage[10];
Diletant 173:7f938afb0447 1340 hashParamTable[374].size = sizeof(device.plcs.output.settings.transfer.voltage[10]);
Diletant 173:7f938afb0447 1341 hashParamTable[375].hash = 0x89f9b381;
Diletant 173:7f938afb0447 1342 hashParamTable[375].ref = &device.sequencer.output.analog.settings.transfer.code[6];
Diletant 173:7f938afb0447 1343 hashParamTable[375].size = sizeof(device.sequencer.output.analog.settings.transfer.code[6]);
Diletant 173:7f938afb0447 1344 hashParamTable[376].hash = 0x8a56f632;
Diletant 173:7f938afb0447 1345 hashParamTable[376].ref = &device.dither.detector.settings.filter.factor[8];
Diletant 173:7f938afb0447 1346 hashParamTable[376].size = sizeof(device.dither.detector.settings.filter.factor[8]);
Diletant 173:7f938afb0447 1347 hashParamTable[377].hash = 0x8a85b31;
Diletant 173:7f938afb0447 1348 hashParamTable[377].ref = &device.plcs.bias.settings.transfer.normalized[12];
Diletant 173:7f938afb0447 1349 hashParamTable[377].size = sizeof(device.plcs.bias.settings.transfer.normalized[12]);
Diletant 173:7f938afb0447 1350 hashParamTable[378].hash = 0x8af2c792;
Diletant 173:7f938afb0447 1351 hashParamTable[378].ref = &device.plcs.reset.down.voltage[11];
Diletant 173:7f938afb0447 1352 hashParamTable[378].size = sizeof(device.plcs.reset.down.voltage[11]);
Diletant 173:7f938afb0447 1353 hashParamTable[379].hash = 0x8b3ca824;
Diletant 173:7f938afb0447 1354 hashParamTable[379].ref = &device.plcs.reset.up.voltage[7];
Diletant 173:7f938afb0447 1355 hashParamTable[379].size = sizeof(device.plcs.reset.up.voltage[7]);
Diletant 173:7f938afb0447 1356 hashParamTable[380].hash = 0x8b4e56e3;
Diletant 173:7f938afb0447 1357 hashParamTable[380].ref = &device.isacs.output.settings.transfer.points;
Diletant 173:7f938afb0447 1358 hashParamTable[380].size = sizeof(device.isacs.output.settings.transfer.points);
Diletant 173:7f938afb0447 1359 hashParamTable[381].hash = 0x8bec977c;
Diletant 173:7f938afb0447 1360 hashParamTable[381].ref = &device.controller.uart[1].state.DLM;
Diletant 173:7f938afb0447 1361 hashParamTable[381].size = sizeof(device.controller.uart[1].state.DLM);
Diletant 173:7f938afb0447 1362 hashParamTable[382].hash = 0x8c06eb3b;
Diletant 173:7f938afb0447 1363 hashParamTable[382].ref = &device.dither.noise.settings.enabled;
Diletant 173:7f938afb0447 1364 hashParamTable[382].size = sizeof(device.dither.noise.settings.enabled);
Diletant 173:7f938afb0447 1365 hashParamTable[383].hash = 0x8c3c9572;
Diletant 173:7f938afb0447 1366 hashParamTable[383].ref = &device.plcs.bias.settings.transfer.normalized[5];
Diletant 173:7f938afb0447 1367 hashParamTable[383].size = sizeof(device.plcs.bias.settings.transfer.normalized[5]);
Diletant 173:7f938afb0447 1368 hashParamTable[384].hash = 0x8d06e09b;
Diletant 173:7f938afb0447 1369 hashParamTable[384].ref = &device.plcs.regulator.settings.transfer.correction[8];
Diletant 173:7f938afb0447 1370 hashParamTable[384].size = sizeof(device.plcs.regulator.settings.transfer.correction[8]);
Diletant 173:7f938afb0447 1371 hashParamTable[385].hash = 0x8f0c1c4c;
Diletant 173:7f938afb0447 1372 hashParamTable[385].ref = &device.sequencer.output.analog.settings.transfer.voltage[5];
Diletant 173:7f938afb0447 1373 hashParamTable[385].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[5]);
Diletant 173:7f938afb0447 1374 hashParamTable[386].hash = 0x8f6fd7fe;
Diletant 173:7f938afb0447 1375 hashParamTable[386].ref = &device.controller.uart[1].state.LCR;
Diletant 173:7f938afb0447 1376 hashParamTable[386].size = sizeof(device.controller.uart[1].state.LCR);
Diletant 173:7f938afb0447 1377 hashParamTable[387].hash = 0x8ffd0f4d;
Diletant 173:7f938afb0447 1378 hashParamTable[387].ref = &device.plcs.regulator.settings.transfer.correction[14];
Diletant 173:7f938afb0447 1379 hashParamTable[387].size = sizeof(device.plcs.regulator.settings.transfer.correction[14]);
Diletant 173:7f938afb0447 1380 hashParamTable[388].hash = 0x9005fb46;
Diletant 173:7f938afb0447 1381 hashParamTable[388].ref = &device.plcs.regulator.settings.transfer.error[4];
Diletant 173:7f938afb0447 1382 hashParamTable[388].size = sizeof(device.plcs.regulator.settings.transfer.error[4]);
Diletant 173:7f938afb0447 1383 hashParamTable[389].hash = 0x90e282c0;
Diletant 173:7f938afb0447 1384 hashParamTable[389].ref = &device.sequencer.output.analog.settings.transfer.code[7];
Diletant 173:7f938afb0447 1385 hashParamTable[389].size = sizeof(device.sequencer.output.analog.settings.transfer.code[7]);
Diletant 173:7f938afb0447 1386 hashParamTable[390].hash = 0x90ed6c64;
Diletant 173:7f938afb0447 1387 hashParamTable[390].ref = &device.plcs.output.settings.transfer.voltage[11];
Diletant 173:7f938afb0447 1388 hashParamTable[390].size = sizeof(device.plcs.output.settings.transfer.voltage[11]);
Diletant 173:7f938afb0447 1389 hashParamTable[391].hash = 0x90f0742f;
Diletant 173:7f938afb0447 1390 hashParamTable[391].ref = &device.dither.frequency.settings.transfer.correction[2];
Diletant 173:7f938afb0447 1391 hashParamTable[391].size = sizeof(device.dither.frequency.settings.transfer.correction[2]);
Diletant 173:7f938afb0447 1392 hashParamTable[392].hash = 0x91f0b9ad;
Diletant 173:7f938afb0447 1393 hashParamTable[392].ref = &device.plcs.reset.down.duration[7];
Diletant 173:7f938afb0447 1394 hashParamTable[392].size = sizeof(device.plcs.reset.down.duration[7]);
Diletant 173:7f938afb0447 1395 hashParamTable[393].hash = 0x92279965;
Diletant 173:7f938afb0447 1396 hashParamTable[393].ref = &device.plcs.reset.up.voltage[6];
Diletant 173:7f938afb0447 1397 hashParamTable[393].size = sizeof(device.plcs.reset.up.voltage[6]);
Diletant 173:7f938afb0447 1398 hashParamTable[394].hash = 0x92b3ac84;
Diletant 173:7f938afb0447 1399 hashParamTable[394].ref = &device.plcs.reference.state.sequencer;
Diletant 173:7f938afb0447 1400 hashParamTable[394].size = sizeof(device.plcs.reference.state.sequencer);
Diletant 173:7f938afb0447 1401 hashParamTable[395].hash = 0x930b3fec;
Diletant 173:7f938afb0447 1402 hashParamTable[395].ref = &device.plcs.feedback.state.voltage;
Diletant 173:7f938afb0447 1403 hashParamTable[395].size = sizeof(device.plcs.feedback.state.voltage);
Diletant 173:7f938afb0447 1404 hashParamTable[396].hash = 0x934dc773;
Diletant 173:7f938afb0447 1405 hashParamTable[396].ref = &device.dither.detector.settings.filter.factor[9];
Diletant 173:7f938afb0447 1406 hashParamTable[396].size = sizeof(device.dither.detector.settings.filter.factor[9]);
Diletant 173:7f938afb0447 1407 hashParamTable[397].hash = 0x93e9f6d3;
Diletant 173:7f938afb0447 1408 hashParamTable[397].ref = &device.plcs.reset.down.voltage[10];
Diletant 173:7f938afb0447 1409 hashParamTable[397].size = sizeof(device.plcs.reset.down.voltage[10]);
Diletant 173:7f938afb0447 1410 hashParamTable[398].hash = 0x94193457;
Diletant 173:7f938afb0447 1411 hashParamTable[398].ref = &device.isacs.input.state.average;
Diletant 173:7f938afb0447 1412 hashParamTable[398].size = sizeof(device.isacs.input.state.average);
Diletant 173:7f938afb0447 1413 hashParamTable[399].hash = 0x941dd1da;
Diletant 173:7f938afb0447 1414 hashParamTable[399].ref = &device.plcs.regulator.settings.transfer.correction[9];
Diletant 173:7f938afb0447 1415 hashParamTable[399].size = sizeof(device.plcs.regulator.settings.transfer.correction[9]);
Diletant 173:7f938afb0447 1416 hashParamTable[400].hash = 0x94360535;
Diletant 173:7f938afb0447 1417 hashParamTable[400].ref = &device.isacs.regulator.state.reference;
Diletant 173:7f938afb0447 1418 hashParamTable[400].size = sizeof(device.isacs.regulator.state.reference);
Diletant 173:7f938afb0447 1419 hashParamTable[401].hash = 0x9527a433;
Diletant 173:7f938afb0447 1420 hashParamTable[401].ref = &device.plcs.bias.settings.transfer.normalized[4];
Diletant 173:7f938afb0447 1421 hashParamTable[401].size = sizeof(device.plcs.bias.settings.transfer.normalized[4]);
Diletant 173:7f938afb0447 1422 hashParamTable[402].hash = 0x96172d0d;
Diletant 173:7f938afb0447 1423 hashParamTable[402].ref = &device.sequencer.output.analog.settings.transfer.voltage[4];
Diletant 173:7f938afb0447 1424 hashParamTable[402].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[4]);
Diletant 173:7f938afb0447 1425 hashParamTable[403].hash = 0x96d795b;
Diletant 173:7f938afb0447 1426 hashParamTable[403].ref = &device.isacs.regulator.settings.reset.reference;
Diletant 173:7f938afb0447 1427 hashParamTable[403].size = sizeof(device.isacs.regulator.settings.reset.reference);
Diletant 173:7f938afb0447 1428 hashParamTable[404].hash = 0x96e63e0c;
Diletant 173:7f938afb0447 1429 hashParamTable[404].ref = &device.plcs.regulator.settings.transfer.correction[15];
Diletant 173:7f938afb0447 1430 hashParamTable[404].size = sizeof(device.plcs.regulator.settings.transfer.correction[15]);
Diletant 173:7f938afb0447 1431 hashParamTable[405].hash = 0x97dea178;
Diletant 173:7f938afb0447 1432 hashParamTable[405].ref = &device.controller.QEI.state.position;
Diletant 173:7f938afb0447 1433 hashParamTable[405].size = sizeof(device.controller.QEI.state.position);
Diletant 173:7f938afb0447 1434 hashParamTable[406].hash = 0x983d2d98;
Diletant 173:7f938afb0447 1435 hashParamTable[406].ref = &device.dither.amplitude.settings.transfer.correction[8];
Diletant 173:7f938afb0447 1436 hashParamTable[406].size = sizeof(device.dither.amplitude.settings.transfer.correction[8]);
Diletant 173:7f938afb0447 1437 hashParamTable[407].hash = 0x98a0752e;
Diletant 173:7f938afb0447 1438 hashParamTable[407].ref = &device.dither.detector.settings.transfer.restored[3];
Diletant 173:7f938afb0447 1439 hashParamTable[407].size = sizeof(device.dither.detector.settings.transfer.restored[3]);
Diletant 173:7f938afb0447 1440 hashParamTable[408].hash = 0x9a099a42;
Diletant 173:7f938afb0447 1441 hashParamTable[408].ref = &device.isacs.input.settings.transfer.code[11];
Diletant 173:7f938afb0447 1442 hashParamTable[408].size = sizeof(device.isacs.input.settings.transfer.code[11]);
Diletant 173:7f938afb0447 1443 hashParamTable[409].hash = 0x9a900bfc;
Diletant 173:7f938afb0447 1444 hashParamTable[409].ref = &device.sequencer.sampler.settings.sequence[55];
Diletant 173:7f938afb0447 1445 hashParamTable[409].size = sizeof(device.sequencer.sampler.settings.sequence[55]);
Diletant 173:7f938afb0447 1446 hashParamTable[410].hash = 0x9ab04f57;
Diletant 173:7f938afb0447 1447 hashParamTable[410].ref = &device.sequencer.sampler.state.enabled;
Diletant 173:7f938afb0447 1448 hashParamTable[410].size = sizeof(device.sequencer.sampler.state.enabled);
Diletant 173:7f938afb0447 1449 hashParamTable[411].hash = 0x9b391ccb;
Diletant 173:7f938afb0447 1450 hashParamTable[411].ref = &device.plcs.output.settings.transfer.voltage[4];
Diletant 173:7f938afb0447 1451 hashParamTable[411].size = sizeof(device.plcs.output.settings.transfer.voltage[4]);
Diletant 173:7f938afb0447 1452 hashParamTable[412].hash = 0x9b5261cb;
Diletant 173:7f938afb0447 1453 hashParamTable[412].ref = &device.sequencer.sampler.settings.sequence[45];
Diletant 173:7f938afb0447 1454 hashParamTable[412].size = sizeof(device.sequencer.sampler.settings.sequence[45]);
Diletant 173:7f938afb0447 1455 hashParamTable[413].hash = 0x9cb1b09d;
Diletant 173:7f938afb0447 1456 hashParamTable[413].ref = &device.dither.frequency.settings.transfer.error[0];
Diletant 173:7f938afb0447 1457 hashParamTable[413].size = sizeof(device.dither.frequency.settings.transfer.error[0]);
Diletant 173:7f938afb0447 1458 hashParamTable[414].hash = 0x9cc2baf1;
Diletant 173:7f938afb0447 1459 hashParamTable[414].ref = &device.plcs.reset.down.temperature[12];
Diletant 173:7f938afb0447 1460 hashParamTable[414].size = sizeof(device.plcs.reset.down.temperature[12]);
Diletant 173:7f938afb0447 1461 hashParamTable[415].hash = 0x9cea9319;
Diletant 173:7f938afb0447 1462 hashParamTable[415].ref = &device.sequencer.sampler.settings.sequence[5];
Diletant 173:7f938afb0447 1463 hashParamTable[415].size = sizeof(device.sequencer.sampler.settings.sequence[5]);
Diletant 173:7f938afb0447 1464 hashParamTable[416].hash = 0x9ced84e1;
Diletant 173:7f938afb0447 1465 hashParamTable[416].ref = &device.plcs.reset.up.duration[7];
Diletant 173:7f938afb0447 1466 hashParamTable[416].size = sizeof(device.plcs.reset.up.duration[7]);
Diletant 173:7f938afb0447 1467 hashParamTable[417].hash = 0x9d99a320;
Diletant 173:7f938afb0447 1468 hashParamTable[417].ref = &device.sequencer.sampler.settings.sequence[15];
Diletant 173:7f938afb0447 1469 hashParamTable[417].size = sizeof(device.sequencer.sampler.settings.sequence[15]);
Diletant 173:7f938afb0447 1470 hashParamTable[418].hash = 0x9e1d774e;
Diletant 173:7f938afb0447 1471 hashParamTable[418].ref = &device.sequencer.sampler.settings.sequence[35];
Diletant 173:7f938afb0447 1472 hashParamTable[418].size = sizeof(device.sequencer.sampler.settings.sequence[35]);
Diletant 173:7f938afb0447 1473 hashParamTable[419].hash = 0x9e54ecc8;
Diletant 173:7f938afb0447 1474 hashParamTable[419].ref = &device.dither.pulse.state.rise;
Diletant 173:7f938afb0447 1475 hashParamTable[419].size = sizeof(device.dither.pulse.state.rise);
Diletant 173:7f938afb0447 1476 hashParamTable[420].hash = 0x9ee1f9a5;
Diletant 173:7f938afb0447 1477 hashParamTable[420].ref = &device.isacs.regulator.settings.reset.scale;
Diletant 173:7f938afb0447 1478 hashParamTable[420].size = sizeof(device.isacs.regulator.settings.reset.scale);
Diletant 173:7f938afb0447 1479 hashParamTable[421].hash = 0x9ef4cb9f;
Diletant 173:7f938afb0447 1480 hashParamTable[421].ref = &device.plcs.reset.up.voltage[10];
Diletant 173:7f938afb0447 1481 hashParamTable[421].size = sizeof(device.plcs.reset.up.voltage[10]);
Diletant 173:7f938afb0447 1482 hashParamTable[422].hash = 0x9ef65be2;
Diletant 173:7f938afb0447 1483 hashParamTable[422].ref = &device.controller.chip;
Diletant 173:7f938afb0447 1484 hashParamTable[422].size = sizeof(device.controller.chip);
Diletant 173:7f938afb0447 1485 hashParamTable[423].hash = 0x9f071faa;
Diletant 173:7f938afb0447 1486 hashParamTable[423].ref = &device.plcs.reset.down.voltage[3];
Diletant 173:7f938afb0447 1487 hashParamTable[423].size = sizeof(device.plcs.reset.down.voltage[3]);
Diletant 173:7f938afb0447 1488 hashParamTable[424].hash = 0x9f0c99d5;
Diletant 173:7f938afb0447 1489 hashParamTable[424].ref = &device.isacs.input.settings.transfer.voltage[7];
Diletant 173:7f938afb0447 1490 hashParamTable[424].size = sizeof(device.isacs.input.settings.transfer.voltage[7]);
Diletant 173:7f938afb0447 1491 hashParamTable[425].hash = 0x9f454868;
Diletant 173:7f938afb0447 1492 hashParamTable[425].ref = &device.isacs.output.settings.transfer.code[4];
Diletant 173:7f938afb0447 1493 hashParamTable[425].size = sizeof(device.isacs.output.settings.transfer.code[4]);
Diletant 173:7f938afb0447 1494 hashParamTable[426].hash = 0x9f90d195;
Diletant 173:7f938afb0447 1495 hashParamTable[426].ref = &device.sequencer.output.analog.settings.transfer.voltage[14];
Diletant 173:7f938afb0447 1496 hashParamTable[426].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[14]);
Diletant 173:7f938afb0447 1497 hashParamTable[427].hash = 0x9fdf1d79;
Diletant 173:7f938afb0447 1498 hashParamTable[427].ref = &device.sequencer.sampler.settings.sequence[25];
Diletant 173:7f938afb0447 1499 hashParamTable[427].size = sizeof(device.sequencer.sampler.settings.sequence[25]);
Diletant 173:7f938afb0447 1500 hashParamTable[428].hash = 0xa011fbe7;
Diletant 173:7f938afb0447 1501 hashParamTable[428].ref = &device.plcs.reset.up.voltage[4];
Diletant 173:7f938afb0447 1502 hashParamTable[428].size = sizeof(device.plcs.reset.up.voltage[4]);
Diletant 173:7f938afb0447 1503 hashParamTable[429].hash = 0xa0538045;
Diletant 173:7f938afb0447 1504 hashParamTable[429].ref = &device.plcs.reset.down.temperature[9];
Diletant 173:7f938afb0447 1505 hashParamTable[429].size = sizeof(device.plcs.reset.down.temperature[9]);
Diletant 173:7f938afb0447 1506 hashParamTable[430].hash = 0xa11422ab;
Diletant 173:7f938afb0447 1507 hashParamTable[430].ref = &device.plcs.bias.settings.transfer.raw[14];
Diletant 173:7f938afb0447 1508 hashParamTable[430].size = sizeof(device.plcs.bias.settings.transfer.raw[14]);
Diletant 173:7f938afb0447 1509 hashParamTable[431].hash = 0xa1df9451;
Diletant 173:7f938afb0447 1510 hashParamTable[431].ref = &device.plcs.reset.down.voltage[12];
Diletant 173:7f938afb0447 1511 hashParamTable[431].size = sizeof(device.plcs.reset.down.voltage[12]);
Diletant 173:7f938afb0447 1512 hashParamTable[432].hash = 0xa23399c4;
Diletant 173:7f938afb0447 1513 hashParamTable[432].ref = &device.plcs.regulator.settings.transfer.error[6];
Diletant 173:7f938afb0447 1514 hashParamTable[432].size = sizeof(device.plcs.regulator.settings.transfer.error[6]);
Diletant 173:7f938afb0447 1515 hashParamTable[433].hash = 0xa2411627;
Diletant 173:7f938afb0447 1516 hashParamTable[433].ref = &device.isacs.output.settings.transfer.code[14];
Diletant 173:7f938afb0447 1517 hashParamTable[433].size = sizeof(device.isacs.output.settings.transfer.code[14]);
Diletant 173:7f938afb0447 1518 hashParamTable[434].hash = 0xa2471925;
Diletant 173:7f938afb0447 1519 hashParamTable[434].ref = &device.isacs.regulator.settings.start.enabled;
Diletant 173:7f938afb0447 1520 hashParamTable[434].size = sizeof(device.isacs.regulator.settings.start.enabled);
Diletant 173:7f938afb0447 1521 hashParamTable[435].hash = 0xa2c616ad;
Diletant 173:7f938afb0447 1522 hashParamTable[435].ref = &device.dither.frequency.settings.transfer.correction[0];
Diletant 173:7f938afb0447 1523 hashParamTable[435].size = sizeof(device.dither.frequency.settings.transfer.correction[0]);
Diletant 173:7f938afb0447 1524 hashParamTable[436].hash = 0xa2d4e042;
Diletant 173:7f938afb0447 1525 hashParamTable[436].ref = &device.sequencer.output.analog.settings.transfer.code[5];
Diletant 173:7f938afb0447 1526 hashParamTable[436].size = sizeof(device.sequencer.output.analog.settings.transfer.code[5]);
Diletant 173:7f938afb0447 1527 hashParamTable[437].hash = 0xa2db0ee6;
Diletant 173:7f938afb0447 1528 hashParamTable[437].ref = &device.plcs.output.settings.transfer.voltage[13];
Diletant 173:7f938afb0447 1529 hashParamTable[437].size = sizeof(device.plcs.output.settings.transfer.voltage[13]);
Diletant 173:7f938afb0447 1530 hashParamTable[438].hash = 0xa31ef142;
Diletant 173:7f938afb0447 1531 hashParamTable[438].ref = &device.plcs.bias.state.sum;
Diletant 173:7f938afb0447 1532 hashParamTable[438].size = sizeof(device.plcs.bias.state.sum);
Diletant 173:7f938afb0447 1533 hashParamTable[439].hash = 0xa3c6db2f;
Diletant 173:7f938afb0447 1534 hashParamTable[439].ref = &device.plcs.reset.down.duration[5];
Diletant 173:7f938afb0447 1535 hashParamTable[439].size = sizeof(device.plcs.reset.down.duration[5]);
Diletant 173:7f938afb0447 1536 hashParamTable[440].hash = 0xa4214f8f;
Diletant 173:7f938afb0447 1537 hashParamTable[440].ref = &device.sequencer.output.analog.settings.transfer.voltage[6];
Diletant 173:7f938afb0447 1538 hashParamTable[440].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[6]);
Diletant 173:7f938afb0447 1539 hashParamTable[441].hash = 0xa4e250b4;
Diletant 173:7f938afb0447 1540 hashParamTable[441].ref = &device.sequencer.sampler.settings.position[0];
Diletant 173:7f938afb0447 1541 hashParamTable[441].size = sizeof(device.sequencer.sampler.settings.position[0]);
Diletant 173:7f938afb0447 1542 hashParamTable[442].hash = 0xa711c6b1;
Diletant 173:7f938afb0447 1543 hashParamTable[442].ref = &device.plcs.bias.settings.transfer.normalized[6];
Diletant 173:7f938afb0447 1544 hashParamTable[442].size = sizeof(device.plcs.bias.settings.transfer.normalized[6]);
Diletant 173:7f938afb0447 1545 hashParamTable[443].hash = 0xa80ee333;
Diletant 173:7f938afb0447 1546 hashParamTable[443].ref = &device.lightUp.state.sequence;
Diletant 173:7f938afb0447 1547 hashParamTable[443].size = sizeof(device.lightUp.state.sequence);
Diletant 173:7f938afb0447 1548 hashParamTable[444].hash = 0xa83ff8c0;
Diletant 173:7f938afb0447 1549 hashParamTable[444].ref = &device.isacs.input.settings.transfer.code[13];
Diletant 173:7f938afb0447 1550 hashParamTable[444].size = sizeof(device.isacs.input.settings.transfer.code[13]);
Diletant 173:7f938afb0447 1551 hashParamTable[445].hash = 0xa8a6697e;
Diletant 173:7f938afb0447 1552 hashParamTable[445].ref = &device.sequencer.sampler.settings.sequence[57];
Diletant 173:7f938afb0447 1553 hashParamTable[445].size = sizeof(device.sequencer.sampler.settings.sequence[57]);
Diletant 173:7f938afb0447 1554 hashParamTable[446].hash = 0xa90f7e49;
Diletant 173:7f938afb0447 1555 hashParamTable[446].ref = &device.plcs.output.settings.transfer.voltage[6];
Diletant 173:7f938afb0447 1556 hashParamTable[446].size = sizeof(device.plcs.output.settings.transfer.voltage[6]);
Diletant 173:7f938afb0447 1557 hashParamTable[447].hash = 0xa9640349;
Diletant 173:7f938afb0447 1558 hashParamTable[447].ref = &device.sequencer.sampler.settings.sequence[47];
Diletant 173:7f938afb0447 1559 hashParamTable[447].size = sizeof(device.sequencer.sampler.settings.sequence[47]);
Diletant 173:7f938afb0447 1560 hashParamTable[448].hash = 0xa9a4d9a5;
Diletant 173:7f938afb0447 1561 hashParamTable[448].ref = &device.dither.detector.settings.filter.factor[18];
Diletant 173:7f938afb0447 1562 hashParamTable[448].size = sizeof(device.dither.detector.settings.filter.factor[18]);
Diletant 173:7f938afb0447 1563 hashParamTable[449].hash = 0xa9efc54;
Diletant 173:7f938afb0447 1564 hashParamTable[449].ref = &device.plcs.regulator.settings.transfer.correction[7];
Diletant 173:7f938afb0447 1565 hashParamTable[449].size = sizeof(device.plcs.regulator.settings.transfer.correction[7]);
Diletant 173:7f938afb0447 1566 hashParamTable[450].hash = 0xaa1215fe;
Diletant 173:7f938afb0447 1567 hashParamTable[450].ref = &device.plcs.output.settings.sequencer;
Diletant 173:7f938afb0447 1568 hashParamTable[450].size = sizeof(device.plcs.output.settings.sequencer);
Diletant 173:7f938afb0447 1569 hashParamTable[451].hash = 0xaa9617ac;
Diletant 173:7f938afb0447 1570 hashParamTable[451].ref = &device.dither.detector.settings.transfer.restored[1];
Diletant 173:7f938afb0447 1571 hashParamTable[451].size = sizeof(device.dither.detector.settings.transfer.restored[1]);
Diletant 173:7f938afb0447 1572 hashParamTable[452].hash = 0xabe267fc;
Diletant 173:7f938afb0447 1573 hashParamTable[452].ref = &device.dither.detector.settings.filter.factor[28];
Diletant 173:7f938afb0447 1574 hashParamTable[452].size = sizeof(device.dither.detector.settings.filter.factor[28]);
Diletant 173:7f938afb0447 1575 hashParamTable[453].hash = 0xac2b15cc;
Diletant 173:7f938afb0447 1576 hashParamTable[453].ref = &device.sequencer.sampler.settings.sequence[37];
Diletant 173:7f938afb0447 1577 hashParamTable[453].size = sizeof(device.sequencer.sampler.settings.sequence[37]);
Diletant 173:7f938afb0447 1578 hashParamTable[454].hash = 0xacc2a91d;
Diletant 173:7f938afb0447 1579 hashParamTable[454].ref = &device.plcs.reset.up.voltage[12];
Diletant 173:7f938afb0447 1580 hashParamTable[454].size = sizeof(device.plcs.reset.up.voltage[12]);
Diletant 173:7f938afb0447 1581 hashParamTable[455].hash = 0xad317d28;
Diletant 173:7f938afb0447 1582 hashParamTable[455].ref = &device.plcs.reset.down.voltage[1];
Diletant 173:7f938afb0447 1583 hashParamTable[455].size = sizeof(device.plcs.reset.down.voltage[1]);
Diletant 173:7f938afb0447 1584 hashParamTable[456].hash = 0xad3afb57;
Diletant 173:7f938afb0447 1585 hashParamTable[456].ref = &device.isacs.input.settings.transfer.voltage[5];
Diletant 173:7f938afb0447 1586 hashParamTable[456].size = sizeof(device.isacs.input.settings.transfer.voltage[5]);
Diletant 173:7f938afb0447 1587 hashParamTable[457].hash = 0xad732aea;
Diletant 173:7f938afb0447 1588 hashParamTable[457].ref = &device.isacs.output.settings.transfer.code[6];
Diletant 173:7f938afb0447 1589 hashParamTable[457].size = sizeof(device.isacs.output.settings.transfer.code[6]);
Diletant 173:7f938afb0447 1590 hashParamTable[458].hash = 0xade97ffb;
Diletant 173:7f938afb0447 1591 hashParamTable[458].ref = &device.sequencer.sampler.settings.sequence[27];
Diletant 173:7f938afb0447 1592 hashParamTable[458].size = sizeof(device.sequencer.sampler.settings.sequence[27]);
Diletant 173:7f938afb0447 1593 hashParamTable[459].hash = 0xae87d21f;
Diletant 173:7f938afb0447 1594 hashParamTable[459].ref = &device.dither.frequency.settings.transfer.error[2];
Diletant 173:7f938afb0447 1595 hashParamTable[459].size = sizeof(device.dither.frequency.settings.transfer.error[2]);
Diletant 173:7f938afb0447 1596 hashParamTable[460].hash = 0xaedbe663;
Diletant 173:7f938afb0447 1597 hashParamTable[460].ref = &device.plcs.reset.up.duration[5];
Diletant 173:7f938afb0447 1598 hashParamTable[460].size = sizeof(device.plcs.reset.up.duration[5]);
Diletant 173:7f938afb0447 1599 hashParamTable[461].hash = 0xaedcf19b;
Diletant 173:7f938afb0447 1600 hashParamTable[461].ref = &device.sequencer.sampler.settings.sequence[7];
Diletant 173:7f938afb0447 1601 hashParamTable[461].size = sizeof(device.sequencer.sampler.settings.sequence[7]);
Diletant 173:7f938afb0447 1602 hashParamTable[462].hash = 0xaef4d873;
Diletant 173:7f938afb0447 1603 hashParamTable[462].ref = &device.plcs.reset.down.temperature[10];
Diletant 173:7f938afb0447 1604 hashParamTable[462].size = sizeof(device.plcs.reset.down.temperature[10]);
Diletant 173:7f938afb0447 1605 hashParamTable[463].hash = 0xaf2fadd1;
Diletant 173:7f938afb0447 1606 hashParamTable[463].ref = &device.plcs.reset.up.temperature[15];
Diletant 173:7f938afb0447 1607 hashParamTable[463].size = sizeof(device.plcs.reset.up.temperature[15]);
Diletant 173:7f938afb0447 1608 hashParamTable[464].hash = 0xafafc1a2;
Diletant 173:7f938afb0447 1609 hashParamTable[464].ref = &device.sequencer.sampler.settings.sequence[17];
Diletant 173:7f938afb0447 1610 hashParamTable[464].size = sizeof(device.sequencer.sampler.settings.sequence[17]);
Diletant 173:7f938afb0447 1611 hashParamTable[465].hash = 0xb0144f08;
Diletant 173:7f938afb0447 1612 hashParamTable[465].ref = &device.plcs.output.settings.transfer.voltage[7];
Diletant 173:7f938afb0447 1613 hashParamTable[465].size = sizeof(device.plcs.output.settings.transfer.voltage[7]);
Diletant 173:7f938afb0447 1614 hashParamTable[466].hash = 0xb07f3208;
Diletant 173:7f938afb0447 1615 hashParamTable[466].ref = &device.sequencer.sampler.settings.sequence[46];
Diletant 173:7f938afb0447 1616 hashParamTable[466].size = sizeof(device.sequencer.sampler.settings.sequence[46]);
Diletant 173:7f938afb0447 1617 hashParamTable[467].hash = 0xb0bfe8e4;
Diletant 173:7f938afb0447 1618 hashParamTable[467].ref = &device.dither.detector.settings.filter.factor[19];
Diletant 173:7f938afb0447 1619 hashParamTable[467].size = sizeof(device.dither.detector.settings.filter.factor[19]);
Diletant 173:7f938afb0447 1620 hashParamTable[468].hash = 0xb124c981;
Diletant 173:7f938afb0447 1621 hashParamTable[468].ref = &device.isacs.input.settings.transfer.code[12];
Diletant 173:7f938afb0447 1622 hashParamTable[468].size = sizeof(device.isacs.input.settings.transfer.code[12]);
Diletant 173:7f938afb0447 1623 hashParamTable[469].hash = 0xb1bd583f;
Diletant 173:7f938afb0447 1624 hashParamTable[469].ref = &device.sequencer.sampler.settings.sequence[56];
Diletant 173:7f938afb0447 1625 hashParamTable[469].size = sizeof(device.sequencer.sampler.settings.sequence[56]);
Diletant 173:7f938afb0447 1626 hashParamTable[470].hash = 0xb2048fbd;
Diletant 173:7f938afb0447 1627 hashParamTable[470].ref = &device.dither.amplitude.state.frequency;
Diletant 173:7f938afb0447 1628 hashParamTable[470].size = sizeof(device.dither.amplitude.state.frequency);
Diletant 173:7f938afb0447 1629 hashParamTable[471].hash = 0xb2f956bd;
Diletant 173:7f938afb0447 1630 hashParamTable[471].ref = &device.dither.detector.settings.filter.factor[29];
Diletant 173:7f938afb0447 1631 hashParamTable[471].size = sizeof(device.dither.detector.settings.filter.factor[29]);
Diletant 173:7f938afb0447 1632 hashParamTable[472].hash = 0xb38d26ed;
Diletant 173:7f938afb0447 1633 hashParamTable[472].ref = &device.dither.detector.settings.transfer.restored[0];
Diletant 173:7f938afb0447 1634 hashParamTable[472].size = sizeof(device.dither.detector.settings.transfer.restored[0]);
Diletant 173:7f938afb0447 1635 hashParamTable[473].hash = 0xb421ca16;
Diletant 173:7f938afb0447 1636 hashParamTable[473].ref = &device.isacs.input.settings.transfer.voltage[4];
Diletant 173:7f938afb0447 1637 hashParamTable[473].size = sizeof(device.isacs.input.settings.transfer.voltage[4]);
Diletant 173:7f938afb0447 1638 hashParamTable[474].hash = 0xb42a4c69;
Diletant 173:7f938afb0447 1639 hashParamTable[474].ref = &device.plcs.reset.down.voltage[0];
Diletant 173:7f938afb0447 1640 hashParamTable[474].size = sizeof(device.plcs.reset.down.voltage[0]);
Diletant 173:7f938afb0447 1641 hashParamTable[475].hash = 0xb4681bab;
Diletant 173:7f938afb0447 1642 hashParamTable[475].ref = &device.isacs.output.settings.transfer.code[7];
Diletant 173:7f938afb0447 1643 hashParamTable[475].size = sizeof(device.isacs.output.settings.transfer.code[7]);
Diletant 173:7f938afb0447 1644 hashParamTable[476].hash = 0xb4f24eba;
Diletant 173:7f938afb0447 1645 hashParamTable[476].ref = &device.sequencer.sampler.settings.sequence[26];
Diletant 173:7f938afb0447 1646 hashParamTable[476].size = sizeof(device.sequencer.sampler.settings.sequence[26]);
Diletant 173:7f938afb0447 1647 hashParamTable[477].hash = 0xb500fd6;
Diletant 173:7f938afb0447 1648 hashParamTable[477].ref = &device.sequencer.output.analog.settings.enabled;
Diletant 173:7f938afb0447 1649 hashParamTable[477].size = sizeof(device.sequencer.output.analog.settings.enabled);
Diletant 173:7f938afb0447 1650 hashParamTable[478].hash = 0xb530248d;
Diletant 173:7f938afb0447 1651 hashParamTable[478].ref = &device.sequencer.sampler.settings.sequence[36];
Diletant 173:7f938afb0447 1652 hashParamTable[478].size = sizeof(device.sequencer.sampler.settings.sequence[36]);
Diletant 173:7f938afb0447 1653 hashParamTable[479].hash = 0xb5749b10;
Diletant 173:7f938afb0447 1654 hashParamTable[479].ref = &device.sequencer.output.analog.settings.transfer.points;
Diletant 173:7f938afb0447 1655 hashParamTable[479].size = sizeof(device.sequencer.output.analog.settings.transfer.points);
Diletant 173:7f938afb0447 1656 hashParamTable[480].hash = 0xb5d9985c;
Diletant 173:7f938afb0447 1657 hashParamTable[480].ref = &device.plcs.reset.up.voltage[13];
Diletant 173:7f938afb0447 1658 hashParamTable[480].size = sizeof(device.plcs.reset.up.voltage[13]);
Diletant 173:7f938afb0447 1659 hashParamTable[481].hash = 0xb60bd7d;
Diletant 173:7f938afb0447 1660 hashParamTable[481].ref = &device.plcs.feedback.settings.transfer.normalized[15];
Diletant 173:7f938afb0447 1661 hashParamTable[481].size = sizeof(device.plcs.feedback.settings.transfer.normalized[15]);
Diletant 173:7f938afb0447 1662 hashParamTable[482].hash = 0xb6349c90;
Diletant 173:7f938afb0447 1663 hashParamTable[482].ref = &device.plcs.reset.up.temperature[14];
Diletant 173:7f938afb0447 1664 hashParamTable[482].size = sizeof(device.plcs.reset.up.temperature[14]);
Diletant 173:7f938afb0447 1665 hashParamTable[483].hash = 0xb6b4f0e3;
Diletant 173:7f938afb0447 1666 hashParamTable[483].ref = &device.sequencer.sampler.settings.sequence[16];
Diletant 173:7f938afb0447 1667 hashParamTable[483].size = sizeof(device.sequencer.sampler.settings.sequence[16]);
Diletant 173:7f938afb0447 1668 hashParamTable[484].hash = 0xb79ce35e;
Diletant 173:7f938afb0447 1669 hashParamTable[484].ref = &device.dither.frequency.settings.transfer.error[3];
Diletant 173:7f938afb0447 1670 hashParamTable[484].size = sizeof(device.dither.frequency.settings.transfer.error[3]);
Diletant 173:7f938afb0447 1671 hashParamTable[485].hash = 0xb7c0d722;
Diletant 173:7f938afb0447 1672 hashParamTable[485].ref = &device.plcs.reset.up.duration[4];
Diletant 173:7f938afb0447 1673 hashParamTable[485].size = sizeof(device.plcs.reset.up.duration[4]);
Diletant 173:7f938afb0447 1674 hashParamTable[486].hash = 0xb7c7c0da;
Diletant 173:7f938afb0447 1675 hashParamTable[486].ref = &device.sequencer.sampler.settings.sequence[6];
Diletant 173:7f938afb0447 1676 hashParamTable[486].size = sizeof(device.sequencer.sampler.settings.sequence[6]);
Diletant 173:7f938afb0447 1677 hashParamTable[487].hash = 0xb7efe932;
Diletant 173:7f938afb0447 1678 hashParamTable[487].ref = &device.plcs.reset.down.temperature[11];
Diletant 173:7f938afb0447 1679 hashParamTable[487].size = sizeof(device.plcs.reset.down.temperature[11]);
Diletant 173:7f938afb0447 1680 hashParamTable[488].hash = 0xb80f13ea;
Diletant 173:7f938afb0447 1681 hashParamTable[488].ref = &device.plcs.bias.settings.transfer.raw[15];
Diletant 173:7f938afb0447 1682 hashParamTable[488].size = sizeof(device.plcs.bias.settings.transfer.raw[15]);
Diletant 173:7f938afb0447 1683 hashParamTable[489].hash = 0xb8256f;
Diletant 173:7f938afb0447 1684 hashParamTable[489].ref = &device.dither.detector.settings.transfer.raw[2];
Diletant 173:7f938afb0447 1685 hashParamTable[489].size = sizeof(device.dither.detector.settings.transfer.raw[2]);
Diletant 173:7f938afb0447 1686 hashParamTable[490].hash = 0xb8c4a510;
Diletant 173:7f938afb0447 1687 hashParamTable[490].ref = &device.plcs.reset.down.voltage[13];
Diletant 173:7f938afb0447 1688 hashParamTable[490].size = sizeof(device.plcs.reset.down.voltage[13]);
Diletant 173:7f938afb0447 1689 hashParamTable[491].hash = 0xb90acaa6;
Diletant 173:7f938afb0447 1690 hashParamTable[491].ref = &device.plcs.reset.up.voltage[5];
Diletant 173:7f938afb0447 1691 hashParamTable[491].size = sizeof(device.plcs.reset.up.voltage[5]);
Diletant 173:7f938afb0447 1692 hashParamTable[492].hash = 0xb948b104;
Diletant 173:7f938afb0447 1693 hashParamTable[492].ref = &device.plcs.reset.down.temperature[8];
Diletant 173:7f938afb0447 1694 hashParamTable[492].size = sizeof(device.plcs.reset.down.temperature[8]);
Diletant 173:7f938afb0447 1695 hashParamTable[493].hash = 0xbaddea6e;
Diletant 173:7f938afb0447 1696 hashParamTable[493].ref = &device.plcs.reset.down.duration[4];
Diletant 173:7f938afb0447 1697 hashParamTable[493].size = sizeof(device.plcs.reset.down.duration[4]);
Diletant 173:7f938afb0447 1698 hashParamTable[494].hash = 0xbb28a885;
Diletant 173:7f938afb0447 1699 hashParamTable[494].ref = &device.plcs.regulator.settings.transfer.error[7];
Diletant 173:7f938afb0447 1700 hashParamTable[494].size = sizeof(device.plcs.regulator.settings.transfer.error[7]);
Diletant 173:7f938afb0447 1701 hashParamTable[495].hash = 0xbb5a2766;
Diletant 173:7f938afb0447 1702 hashParamTable[495].ref = &device.isacs.output.settings.transfer.code[15];
Diletant 173:7f938afb0447 1703 hashParamTable[495].size = sizeof(device.isacs.output.settings.transfer.code[15]);
Diletant 173:7f938afb0447 1704 hashParamTable[496].hash = 0xbbacc986;
Diletant 173:7f938afb0447 1705 hashParamTable[496].ref = &device.plcs.output.state.voltage;
Diletant 173:7f938afb0447 1706 hashParamTable[496].size = sizeof(device.plcs.output.state.voltage);
Diletant 173:7f938afb0447 1707 hashParamTable[497].hash = 0xbbc03fa7;
Diletant 173:7f938afb0447 1708 hashParamTable[497].ref = &device.plcs.output.settings.transfer.voltage[12];
Diletant 173:7f938afb0447 1709 hashParamTable[497].size = sizeof(device.plcs.output.settings.transfer.voltage[12]);
Diletant 173:7f938afb0447 1710 hashParamTable[498].hash = 0xbbcfd103;
Diletant 173:7f938afb0447 1711 hashParamTable[498].ref = &device.sequencer.output.analog.settings.transfer.code[4];
Diletant 173:7f938afb0447 1712 hashParamTable[498].size = sizeof(device.sequencer.output.analog.settings.transfer.code[4]);
Diletant 173:7f938afb0447 1713 hashParamTable[499].hash = 0xbbdd27ec;
Diletant 173:7f938afb0447 1714 hashParamTable[499].ref = &device.dither.frequency.settings.transfer.correction[1];
Diletant 173:7f938afb0447 1715 hashParamTable[499].size = sizeof(device.dither.frequency.settings.transfer.correction[1]);
Diletant 173:7f938afb0447 1716 hashParamTable[500].hash = 0xbcfa14ae;
Diletant 173:7f938afb0447 1717 hashParamTable[500].ref = &device.controller.uart[1].settings.baudRate;
Diletant 173:7f938afb0447 1718 hashParamTable[500].size = sizeof(device.controller.uart[1].settings.baudRate);
Diletant 173:7f938afb0447 1719 hashParamTable[501].hash = 0xbd22c6cf;
Diletant 173:7f938afb0447 1720 hashParamTable[501].ref = &device.plcs.regulator.state.error;
Diletant 173:7f938afb0447 1721 hashParamTable[501].size = sizeof(device.plcs.regulator.state.error);
Diletant 173:7f938afb0447 1722 hashParamTable[502].hash = 0xbd3a7ece;
Diletant 173:7f938afb0447 1723 hashParamTable[502].ref = &device.sequencer.output.analog.settings.transfer.voltage[7];
Diletant 173:7f938afb0447 1724 hashParamTable[502].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[7]);
Diletant 173:7f938afb0447 1725 hashParamTable[503].hash = 0xbdf961f5;
Diletant 173:7f938afb0447 1726 hashParamTable[503].ref = &device.sequencer.sampler.settings.position[1];
Diletant 173:7f938afb0447 1727 hashParamTable[503].size = sizeof(device.sequencer.sampler.settings.position[1]);
Diletant 173:7f938afb0447 1728 hashParamTable[504].hash = 0xbdff6e0b;
Diletant 173:7f938afb0447 1729 hashParamTable[504].ref = &device.sequencer.sampler.state.amplitude;
Diletant 173:7f938afb0447 1730 hashParamTable[504].size = sizeof(device.sequencer.sampler.state.amplitude);
Diletant 173:7f938afb0447 1731 hashParamTable[505].hash = 0xbe0af7f0;
Diletant 173:7f938afb0447 1732 hashParamTable[505].ref = &device.plcs.bias.settings.transfer.normalized[7];
Diletant 173:7f938afb0447 1733 hashParamTable[505].size = sizeof(device.plcs.bias.settings.transfer.normalized[7]);
Diletant 173:7f938afb0447 1734 hashParamTable[506].hash = 0xbf36e77;
Diletant 173:7f938afb0447 1735 hashParamTable[506].ref = &device.dither.amplitude.settings.transfer.error[15];
Diletant 173:7f938afb0447 1736 hashParamTable[506].size = sizeof(device.dither.amplitude.settings.transfer.error[15]);
Diletant 173:7f938afb0447 1737 hashParamTable[507].hash = 0xc04d8a8b;
Diletant 173:7f938afb0447 1738 hashParamTable[507].ref = &device.sequencer.output.analog.settings.transfer.voltage[2];
Diletant 173:7f938afb0447 1739 hashParamTable[507].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[2]);
Diletant 173:7f938afb0447 1740 hashParamTable[508].hash = 0xc0bc998a;
Diletant 173:7f938afb0447 1741 hashParamTable[508].ref = &device.plcs.regulator.settings.transfer.correction[13];
Diletant 173:7f938afb0447 1742 hashParamTable[508].size = sizeof(device.plcs.regulator.settings.transfer.correction[13]);
Diletant 173:7f938afb0447 1743 hashParamTable[509].hash = 0xc0e90f5f;
Diletant 173:7f938afb0447 1744 hashParamTable[509].ref = &device.plcs.feedback.settings.transfer.normalized[9];
Diletant 173:7f938afb0447 1745 hashParamTable[509].size = sizeof(device.plcs.feedback.settings.transfer.normalized[9]);
Diletant 173:7f938afb0447 1746 hashParamTable[510].hash = 0xc177fc3b;
Diletant 173:7f938afb0447 1747 hashParamTable[510].ref = &device.dither.noise.state.trigger;
Diletant 173:7f938afb0447 1748 hashParamTable[510].size = sizeof(device.dither.noise.state.trigger);
Diletant 173:7f938afb0447 1749 hashParamTable[511].hash = 0xc37d03b5;
Diletant 173:7f938afb0447 1750 hashParamTable[511].ref = &device.plcs.bias.settings.transfer.normalized[2];
Diletant 173:7f938afb0447 1751 hashParamTable[511].size = sizeof(device.plcs.bias.settings.transfer.normalized[2]);
Diletant 173:7f938afb0447 1752 hashParamTable[512].hash = 0xc38048cc;
Diletant 173:7f938afb0447 1753 hashParamTable[512].ref = &device.controller.I2C.state.counter;
Diletant 173:7f938afb0447 1754 hashParamTable[512].size = sizeof(device.controller.I2C.state.counter);
Diletant 173:7f938afb0447 1755 hashParamTable[513].hash = 0xc4212aac;
Diletant 173:7f938afb0447 1756 hashParamTable[513].ref = &device.dither.amplitude.settings.transfer.error[8];
Diletant 173:7f938afb0447 1757 hashParamTable[513].size = sizeof(device.dither.amplitude.settings.transfer.error[8]);
Diletant 173:7f938afb0447 1758 hashParamTable[514].hash = 0xc47d3ee3;
Diletant 173:7f938afb0447 1759 hashParamTable[514].ref = &device.plcs.reset.up.voltage[0];
Diletant 173:7f938afb0447 1760 hashParamTable[514].size = sizeof(device.plcs.reset.up.voltage[0]);
Diletant 173:7f938afb0447 1761 hashParamTable[515].hash = 0xc4c6dc10;
Diletant 173:7f938afb0447 1762 hashParamTable[515].ref = &device.plcs.feedback.state.output;
Diletant 173:7f938afb0447 1763 hashParamTable[515].size = sizeof(device.plcs.feedback.state.output);
Diletant 173:7f938afb0447 1764 hashParamTable[516].hash = 0xc4dd202b;
Diletant 173:7f938afb0447 1765 hashParamTable[516].ref = &device.dither.cycle.settings.enabled;
Diletant 173:7f938afb0447 1766 hashParamTable[516].size = sizeof(device.dither.cycle.settings.enabled);
Diletant 173:7f938afb0447 1767 hashParamTable[517].hash = 0xc578e7af;
Diletant 173:7f938afb0447 1768 hashParamTable[517].ref = &device.plcs.bias.settings.transfer.raw[10];
Diletant 173:7f938afb0447 1769 hashParamTable[517].size = sizeof(device.plcs.bias.settings.transfer.raw[10]);
Diletant 173:7f938afb0447 1770 hashParamTable[518].hash = 0xc62dd323;
Diletant 173:7f938afb0447 1771 hashParamTable[518].ref = &device.isacs.output.settings.transfer.code[10];
Diletant 173:7f938afb0447 1772 hashParamTable[518].size = sizeof(device.isacs.output.settings.transfer.code[10]);
Diletant 173:7f938afb0447 1773 hashParamTable[519].hash = 0xc65f5cc0;
Diletant 173:7f938afb0447 1774 hashParamTable[519].ref = &device.plcs.regulator.settings.transfer.error[2];
Diletant 173:7f938afb0447 1775 hashParamTable[519].size = sizeof(device.plcs.regulator.settings.transfer.error[2]);
Diletant 173:7f938afb0447 1776 hashParamTable[520].hash = 0xc6aad3a9;
Diletant 173:7f938afb0447 1777 hashParamTable[520].ref = &device.dither.frequency.settings.transfer.correction[4];
Diletant 173:7f938afb0447 1778 hashParamTable[520].size = sizeof(device.dither.frequency.settings.transfer.correction[4]);
Diletant 173:7f938afb0447 1779 hashParamTable[521].hash = 0xc6b82546;
Diletant 173:7f938afb0447 1780 hashParamTable[521].ref = &device.sequencer.output.analog.settings.transfer.code[1];
Diletant 173:7f938afb0447 1781 hashParamTable[521].size = sizeof(device.sequencer.output.analog.settings.transfer.code[1]);
Diletant 173:7f938afb0447 1782 hashParamTable[522].hash = 0xc6d70a1e;
Diletant 173:7f938afb0447 1783 hashParamTable[522].ref = &device.isacs.regulator.settings.regular.reference;
Diletant 173:7f938afb0447 1784 hashParamTable[522].size = sizeof(device.isacs.regulator.settings.regular.reference);
Diletant 173:7f938afb0447 1785 hashParamTable[523].hash = 0xc71120d3;
Diletant 173:7f938afb0447 1786 hashParamTable[523].ref = &device.dither.noise.settings.period;
Diletant 173:7f938afb0447 1787 hashParamTable[523].size = sizeof(device.dither.noise.settings.period);
Diletant 173:7f938afb0447 1788 hashParamTable[524].hash = 0xc7aa1e2b;
Diletant 173:7f938afb0447 1789 hashParamTable[524].ref = &device.plcs.reset.down.duration[1];
Diletant 173:7f938afb0447 1790 hashParamTable[524].size = sizeof(device.plcs.reset.down.duration[1]);
Diletant 173:7f938afb0447 1791 hashParamTable[525].hash = 0xc7ed2462;
Diletant 173:7f938afb0447 1792 hashParamTable[525].ref = &device.plcs.output.settings.transfer.code[9];
Diletant 173:7f938afb0447 1793 hashParamTable[525].size = sizeof(device.plcs.output.settings.transfer.code[9]);
Diletant 173:7f938afb0447 1794 hashParamTable[526].hash = 0xc847d0c8;
Diletant 173:7f938afb0447 1795 hashParamTable[526].ref = &device.sequencer.sampler.settings.sequence[33];
Diletant 173:7f938afb0447 1796 hashParamTable[526].size = sizeof(device.sequencer.sampler.settings.sequence[33]);
Diletant 173:7f938afb0447 1797 hashParamTable[527].hash = 0xc871939f;
Diletant 173:7f938afb0447 1798 hashParamTable[527].ref = &device.dither.cycle.state.enabled;
Diletant 173:7f938afb0447 1799 hashParamTable[527].size = sizeof(device.dither.cycle.state.enabled);
Diletant 173:7f938afb0447 1800 hashParamTable[528].hash = 0xc91fefee;
Diletant 173:7f938afb0447 1801 hashParamTable[528].ref = &device.isacs.output.settings.transfer.code[2];
Diletant 173:7f938afb0447 1802 hashParamTable[528].size = sizeof(device.isacs.output.settings.transfer.code[2]);
Diletant 173:7f938afb0447 1803 hashParamTable[529].hash = 0xc926e1ca;
Diletant 173:7f938afb0447 1804 hashParamTable[529].ref = &device.plcs.reset.up.temperature[8];
Diletant 173:7f938afb0447 1805 hashParamTable[529].size = sizeof(device.plcs.reset.up.temperature[8]);
Diletant 173:7f938afb0447 1806 hashParamTable[530].hash = 0xc93db6a7;
Diletant 173:7f938afb0447 1807 hashParamTable[530].ref = &device.plcs.bias.settings.transfer.raw[9];
Diletant 173:7f938afb0447 1808 hashParamTable[530].size = sizeof(device.plcs.bias.settings.transfer.raw[9]);
Diletant 173:7f938afb0447 1809 hashParamTable[531].hash = 0xc93fb1fd;
Diletant 173:7f938afb0447 1810 hashParamTable[531].ref = &device.plcs.feedback.settings.transfer.raw[9];
Diletant 173:7f938afb0447 1811 hashParamTable[531].size = sizeof(device.plcs.feedback.settings.transfer.raw[9]);
Diletant 173:7f938afb0447 1812 hashParamTable[532].hash = 0xc9563e53;
Diletant 173:7f938afb0447 1813 hashParamTable[532].ref = &device.isacs.input.settings.transfer.voltage[1];
Diletant 173:7f938afb0447 1814 hashParamTable[532].size = sizeof(device.isacs.input.settings.transfer.voltage[1]);
Diletant 173:7f938afb0447 1815 hashParamTable[533].hash = 0xc95db82c;
Diletant 173:7f938afb0447 1816 hashParamTable[533].ref = &device.plcs.reset.down.voltage[5];
Diletant 173:7f938afb0447 1817 hashParamTable[533].size = sizeof(device.plcs.reset.down.voltage[5]);
Diletant 173:7f938afb0447 1818 hashParamTable[534].hash = 0xc985baff;
Diletant 173:7f938afb0447 1819 hashParamTable[534].ref = &device.sequencer.sampler.settings.sequence[23];
Diletant 173:7f938afb0447 1820 hashParamTable[534].size = sizeof(device.sequencer.sampler.settings.sequence[23]);
Diletant 173:7f938afb0447 1821 hashParamTable[535].hash = 0xc9ca7613;
Diletant 173:7f938afb0447 1822 hashParamTable[535].ref = &device.sequencer.output.analog.settings.transfer.voltage[12];
Diletant 173:7f938afb0447 1823 hashParamTable[535].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[12]);
Diletant 173:7f938afb0447 1824 hashParamTable[536].hash = 0xca4b4eb;
Diletant 173:7f938afb0447 1825 hashParamTable[536].ref = &device.plcs.reset.up.voltage[8];
Diletant 173:7f938afb0447 1826 hashParamTable[536].size = sizeof(device.plcs.reset.up.voltage[8]);
Diletant 173:7f938afb0447 1827 hashParamTable[537].hash = 0xca981d77;
Diletant 173:7f938afb0447 1828 hashParamTable[537].ref = &device.plcs.reset.down.temperature[14];
Diletant 173:7f938afb0447 1829 hashParamTable[537].size = sizeof(device.plcs.reset.down.temperature[14]);
Diletant 173:7f938afb0447 1830 hashParamTable[538].hash = 0xcab0349f;
Diletant 173:7f938afb0447 1831 hashParamTable[538].ref = &device.sequencer.sampler.settings.sequence[3];
Diletant 173:7f938afb0447 1832 hashParamTable[538].size = sizeof(device.sequencer.sampler.settings.sequence[3]);
Diletant 173:7f938afb0447 1833 hashParamTable[539].hash = 0xcab72367;
Diletant 173:7f938afb0447 1834 hashParamTable[539].ref = &device.plcs.reset.up.duration[1];
Diletant 173:7f938afb0447 1835 hashParamTable[539].size = sizeof(device.plcs.reset.up.duration[1]);
Diletant 173:7f938afb0447 1836 hashParamTable[540].hash = 0xcacf6308;
Diletant 173:7f938afb0447 1837 hashParamTable[540].ref = &device.isacs.input.settings.transfer.code[9];
Diletant 173:7f938afb0447 1838 hashParamTable[540].size = sizeof(device.isacs.input.settings.transfer.code[9]);
Diletant 173:7f938afb0447 1839 hashParamTable[541].hash = 0xcad52cc8;
Diletant 173:7f938afb0447 1840 hashParamTable[541].ref = &device.isacs.output.settings.transfer.voltage[9];
Diletant 173:7f938afb0447 1841 hashParamTable[541].size = sizeof(device.isacs.output.settings.transfer.voltage[9]);
Diletant 173:7f938afb0447 1842 hashParamTable[542].hash = 0xcaeb171b;
Diletant 173:7f938afb0447 1843 hashParamTable[542].ref = &device.dither.frequency.settings.transfer.error[6];
Diletant 173:7f938afb0447 1844 hashParamTable[542].size = sizeof(device.dither.frequency.settings.transfer.error[6]);
Diletant 173:7f938afb0447 1845 hashParamTable[543].hash = 0xcb4368d5;
Diletant 173:7f938afb0447 1846 hashParamTable[543].ref = &device.plcs.reset.up.temperature[11];
Diletant 173:7f938afb0447 1847 hashParamTable[543].size = sizeof(device.plcs.reset.up.temperature[11]);
Diletant 173:7f938afb0447 1848 hashParamTable[544].hash = 0xcbc304a6;
Diletant 173:7f938afb0447 1849 hashParamTable[544].ref = &device.sequencer.sampler.settings.sequence[13];
Diletant 173:7f938afb0447 1850 hashParamTable[544].size = sizeof(device.sequencer.sampler.settings.sequence[13]);
Diletant 173:7f938afb0447 1851 hashParamTable[545].hash = 0xccc1fdf;
Diletant 173:7f938afb0447 1852 hashParamTable[545].ref = &device.isacs.input.settings.transfer.voltage[15];
Diletant 173:7f938afb0447 1853 hashParamTable[545].size = sizeof(device.isacs.input.settings.transfer.voltage[15]);
Diletant 173:7f938afb0447 1854 hashParamTable[546].hash = 0xcccaac7a;
Diletant 173:7f938afb0447 1855 hashParamTable[546].ref = &device.sequencer.sampler.settings.sequence[53];
Diletant 173:7f938afb0447 1856 hashParamTable[546].size = sizeof(device.sequencer.sampler.settings.sequence[53]);
Diletant 173:7f938afb0447 1857 hashParamTable[547].hash = 0xcd08c64d;
Diletant 173:7f938afb0447 1858 hashParamTable[547].ref = &device.sequencer.sampler.settings.sequence[43];
Diletant 173:7f938afb0447 1859 hashParamTable[547].size = sizeof(device.sequencer.sampler.settings.sequence[43]);
Diletant 173:7f938afb0447 1860 hashParamTable[548].hash = 0xcd55a6bd;
Diletant 173:7f938afb0447 1861 hashParamTable[548].ref = &device.plcs.reference.state.delta;
Diletant 173:7f938afb0447 1862 hashParamTable[548].size = sizeof(device.plcs.reference.state.delta);
Diletant 173:7f938afb0447 1863 hashParamTable[549].hash = 0xcd63bb4d;
Diletant 173:7f938afb0447 1864 hashParamTable[549].ref = &device.plcs.output.settings.transfer.voltage[2];
Diletant 173:7f938afb0447 1865 hashParamTable[549].size = sizeof(device.plcs.output.settings.transfer.voltage[2]);
Diletant 173:7f938afb0447 1866 hashParamTable[550].hash = 0xce6cf49;
Diletant 173:7f938afb0447 1867 hashParamTable[550].ref = &device.plcs.reset.down.temperature[5];
Diletant 173:7f938afb0447 1868 hashParamTable[550].size = sizeof(device.plcs.reset.down.temperature[5]);
Diletant 173:7f938afb0447 1869 hashParamTable[551].hash = 0xce8c1223;
Diletant 173:7f938afb0447 1870 hashParamTable[551].ref = &device.sequencer.sampler.settings.sequence[63];
Diletant 173:7f938afb0447 1871 hashParamTable[551].size = sizeof(device.sequencer.sampler.settings.sequence[63]);
Diletant 173:7f938afb0447 1872 hashParamTable[552].hash = 0xcefad2a8;
Diletant 173:7f938afb0447 1873 hashParamTable[552].ref = &device.dither.detector.settings.transfer.restored[5];
Diletant 173:7f938afb0447 1874 hashParamTable[552].size = sizeof(device.dither.detector.settings.transfer.restored[5]);
Diletant 173:7f938afb0447 1875 hashParamTable[553].hash = 0xcf8a0a4;
Diletant 173:7f938afb0447 1876 hashParamTable[553].ref = &device.dither.amplitude.settings.transfer.error[0];
Diletant 173:7f938afb0447 1877 hashParamTable[553].size = sizeof(device.dither.amplitude.settings.transfer.error[0]);
Diletant 173:7f938afb0447 1878 hashParamTable[554].hash = 0xcfc8a2e9;
Diletant 173:7f938afb0447 1879 hashParamTable[554].ref = &device.lightUp.state.enabled;
Diletant 173:7f938afb0447 1880 hashParamTable[554].size = sizeof(device.lightUp.state.enabled);
Diletant 173:7f938afb0447 1881 hashParamTable[555].hash = 0xd004deaf;
Diletant 173:7f938afb0447 1882 hashParamTable[555].ref = &device.isacs.output.settings.transfer.code[3];
Diletant 173:7f938afb0447 1883 hashParamTable[555].size = sizeof(device.isacs.output.settings.transfer.code[3]);
Diletant 173:7f938afb0447 1884 hashParamTable[556].hash = 0xd02480bc;
Diletant 173:7f938afb0447 1885 hashParamTable[556].ref = &device.plcs.feedback.settings.transfer.raw[8];
Diletant 173:7f938afb0447 1886 hashParamTable[556].size = sizeof(device.plcs.feedback.settings.transfer.raw[8]);
Diletant 173:7f938afb0447 1887 hashParamTable[557].hash = 0xd02687e6;
Diletant 173:7f938afb0447 1888 hashParamTable[557].ref = &device.plcs.bias.settings.transfer.raw[8];
Diletant 173:7f938afb0447 1889 hashParamTable[557].size = sizeof(device.plcs.bias.settings.transfer.raw[8]);
Diletant 173:7f938afb0447 1890 hashParamTable[558].hash = 0xd03dd08b;
Diletant 173:7f938afb0447 1891 hashParamTable[558].ref = &device.plcs.reset.up.temperature[9];
Diletant 173:7f938afb0447 1892 hashParamTable[558].size = sizeof(device.plcs.reset.up.temperature[9]);
Diletant 173:7f938afb0447 1893 hashParamTable[559].hash = 0xd046896d;
Diletant 173:7f938afb0447 1894 hashParamTable[559].ref = &device.plcs.reset.down.voltage[4];
Diletant 173:7f938afb0447 1895 hashParamTable[559].size = sizeof(device.plcs.reset.down.voltage[4]);
Diletant 173:7f938afb0447 1896 hashParamTable[560].hash = 0xd04d0f12;
Diletant 173:7f938afb0447 1897 hashParamTable[560].ref = &device.isacs.input.settings.transfer.voltage[0];
Diletant 173:7f938afb0447 1898 hashParamTable[560].size = sizeof(device.isacs.input.settings.transfer.voltage[0]);
Diletant 173:7f938afb0447 1899 hashParamTable[561].hash = 0xd09e8bbe;
Diletant 173:7f938afb0447 1900 hashParamTable[561].ref = &device.sequencer.sampler.settings.sequence[22];
Diletant 173:7f938afb0447 1901 hashParamTable[561].size = sizeof(device.sequencer.sampler.settings.sequence[22]);
Diletant 173:7f938afb0447 1902 hashParamTable[562].hash = 0xd0d14752;
Diletant 173:7f938afb0447 1903 hashParamTable[562].ref = &device.sequencer.output.analog.settings.transfer.voltage[13];
Diletant 173:7f938afb0447 1904 hashParamTable[562].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[13]);
Diletant 173:7f938afb0447 1905 hashParamTable[563].hash = 0xd14fa026;
Diletant 173:7f938afb0447 1906 hashParamTable[563].ref = &device.controller.flash.settings.dataSector;
Diletant 173:7f938afb0447 1907 hashParamTable[563].size = sizeof(device.controller.flash.settings.dataSector);
Diletant 173:7f938afb0447 1908 hashParamTable[564].hash = 0xd15ce189;
Diletant 173:7f938afb0447 1909 hashParamTable[564].ref = &device.sequencer.sampler.settings.sequence[32];
Diletant 173:7f938afb0447 1910 hashParamTable[564].size = sizeof(device.sequencer.sampler.settings.sequence[32]);
Diletant 173:7f938afb0447 1911 hashParamTable[565].hash = 0xd1a66dd9;
Diletant 173:7f938afb0447 1912 hashParamTable[565].ref = &device.dither.frequency.settings.transfer.points;
Diletant 173:7f938afb0447 1913 hashParamTable[565].size = sizeof(device.dither.frequency.settings.transfer.points);
Diletant 173:7f938afb0447 1914 hashParamTable[566].hash = 0xd2585994;
Diletant 173:7f938afb0447 1915 hashParamTable[566].ref = &device.plcs.reset.up.temperature[10];
Diletant 173:7f938afb0447 1916 hashParamTable[566].size = sizeof(device.plcs.reset.up.temperature[10]);
Diletant 173:7f938afb0447 1917 hashParamTable[567].hash = 0xd2d835e7;
Diletant 173:7f938afb0447 1918 hashParamTable[567].ref = &device.sequencer.sampler.settings.sequence[12];
Diletant 173:7f938afb0447 1919 hashParamTable[567].size = sizeof(device.sequencer.sampler.settings.sequence[12]);
Diletant 173:7f938afb0447 1920 hashParamTable[568].hash = 0xd3832c36;
Diletant 173:7f938afb0447 1921 hashParamTable[568].ref = &device.plcs.reset.down.temperature[15];
Diletant 173:7f938afb0447 1922 hashParamTable[568].size = sizeof(device.plcs.reset.down.temperature[15]);
Diletant 173:7f938afb0447 1923 hashParamTable[569].hash = 0xd3ab05de;
Diletant 173:7f938afb0447 1924 hashParamTable[569].ref = &device.sequencer.sampler.settings.sequence[2];
Diletant 173:7f938afb0447 1925 hashParamTable[569].size = sizeof(device.sequencer.sampler.settings.sequence[2]);
Diletant 173:7f938afb0447 1926 hashParamTable[570].hash = 0xd3ac1226;
Diletant 173:7f938afb0447 1927 hashParamTable[570].ref = &device.plcs.reset.up.duration[0];
Diletant 173:7f938afb0447 1928 hashParamTable[570].size = sizeof(device.plcs.reset.up.duration[0]);
Diletant 173:7f938afb0447 1929 hashParamTable[571].hash = 0xd3ce1d89;
Diletant 173:7f938afb0447 1930 hashParamTable[571].ref = &device.isacs.output.settings.transfer.voltage[8];
Diletant 173:7f938afb0447 1931 hashParamTable[571].size = sizeof(device.isacs.output.settings.transfer.voltage[8]);
Diletant 173:7f938afb0447 1932 hashParamTable[572].hash = 0xd3d45249;
Diletant 173:7f938afb0447 1933 hashParamTable[572].ref = &device.isacs.input.settings.transfer.code[8];
Diletant 173:7f938afb0447 1934 hashParamTable[572].size = sizeof(device.isacs.input.settings.transfer.code[8]);
Diletant 173:7f938afb0447 1935 hashParamTable[573].hash = 0xd3f0265a;
Diletant 173:7f938afb0447 1936 hashParamTable[573].ref = &device.dither.frequency.settings.transfer.error[7];
Diletant 173:7f938afb0447 1937 hashParamTable[573].size = sizeof(device.dither.frequency.settings.transfer.error[7]);
Diletant 173:7f938afb0447 1938 hashParamTable[574].hash = 0xd413f70c;
Diletant 173:7f938afb0447 1939 hashParamTable[574].ref = &device.sequencer.sampler.settings.sequence[42];
Diletant 173:7f938afb0447 1940 hashParamTable[574].size = sizeof(device.sequencer.sampler.settings.sequence[42]);
Diletant 173:7f938afb0447 1941 hashParamTable[575].hash = 0xd4788a0c;
Diletant 173:7f938afb0447 1942 hashParamTable[575].ref = &device.plcs.output.settings.transfer.voltage[3];
Diletant 173:7f938afb0447 1943 hashParamTable[575].size = sizeof(device.plcs.output.settings.transfer.voltage[3]);
Diletant 173:7f938afb0447 1944 hashParamTable[576].hash = 0xd5d19d3b;
Diletant 173:7f938afb0447 1945 hashParamTable[576].ref = &device.sequencer.sampler.settings.sequence[52];
Diletant 173:7f938afb0447 1946 hashParamTable[576].size = sizeof(device.sequencer.sampler.settings.sequence[52]);
Diletant 173:7f938afb0447 1947 hashParamTable[577].hash = 0xd7972362;
Diletant 173:7f938afb0447 1948 hashParamTable[577].ref = &device.sequencer.sampler.settings.sequence[62];
Diletant 173:7f938afb0447 1949 hashParamTable[577].size = sizeof(device.sequencer.sampler.settings.sequence[62]);
Diletant 173:7f938afb0447 1950 hashParamTable[578].hash = 0xd7e1e3e9;
Diletant 173:7f938afb0447 1951 hashParamTable[578].ref = &device.dither.detector.settings.transfer.restored[4];
Diletant 173:7f938afb0447 1952 hashParamTable[578].size = sizeof(device.dither.detector.settings.transfer.restored[4]);
Diletant 173:7f938afb0447 1953 hashParamTable[579].hash = 0xd914cf5e;
Diletant 173:7f938afb0447 1954 hashParamTable[579].ref = &device.isacs.regulator.state.error;
Diletant 173:7f938afb0447 1955 hashParamTable[579].size = sizeof(device.isacs.regulator.state.error);
Diletant 173:7f938afb0447 1956 hashParamTable[580].hash = 0xd956bbca;
Diletant 173:7f938afb0447 1957 hashParamTable[580].ref = &device.sequencer.output.analog.settings.transfer.voltage[3];
Diletant 173:7f938afb0447 1958 hashParamTable[580].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[3]);
Diletant 173:7f938afb0447 1959 hashParamTable[581].hash = 0xd99d2fe8;
Diletant 173:7f938afb0447 1960 hashParamTable[581].ref = &device.controller.uart[0].settings.baudRate;
Diletant 173:7f938afb0447 1961 hashParamTable[581].size = sizeof(device.controller.uart[0].settings.baudRate);
Diletant 173:7f938afb0447 1962 hashParamTable[582].hash = 0xd9a7a8cb;
Diletant 173:7f938afb0447 1963 hashParamTable[582].ref = &device.plcs.regulator.settings.transfer.correction[12];
Diletant 173:7f938afb0447 1964 hashParamTable[582].size = sizeof(device.plcs.regulator.settings.transfer.correction[12]);
Diletant 173:7f938afb0447 1965 hashParamTable[583].hash = 0xd9f23e1e;
Diletant 173:7f938afb0447 1966 hashParamTable[583].ref = &device.plcs.feedback.settings.transfer.normalized[8];
Diletant 173:7f938afb0447 1967 hashParamTable[583].size = sizeof(device.plcs.feedback.settings.transfer.normalized[8]);
Diletant 173:7f938afb0447 1968 hashParamTable[584].hash = 0xda6632f4;
Diletant 173:7f938afb0447 1969 hashParamTable[584].ref = &device.plcs.bias.settings.transfer.normalized[3];
Diletant 173:7f938afb0447 1970 hashParamTable[584].size = sizeof(device.plcs.bias.settings.transfer.normalized[3]);
Diletant 173:7f938afb0447 1971 hashParamTable[585].hash = 0xdb8486a8;
Diletant 173:7f938afb0447 1972 hashParamTable[585].ref = &device.isacs.regulator.settings.reset.enabled;
Diletant 173:7f938afb0447 1973 hashParamTable[585].size = sizeof(device.isacs.regulator.settings.reset.enabled);
Diletant 173:7f938afb0447 1974 hashParamTable[586].hash = 0xdbdbd0f5;
Diletant 173:7f938afb0447 1975 hashParamTable[586].ref = &device.sequencer.sampler.settings.amplitude;
Diletant 173:7f938afb0447 1976 hashParamTable[586].size = sizeof(device.sequencer.sampler.settings.amplitude);
Diletant 173:7f938afb0447 1977 hashParamTable[587].hash = 0xdc1b0dfc;
Diletant 173:7f938afb0447 1978 hashParamTable[587].ref = &device.plcs.regulator.settings.reference;
Diletant 173:7f938afb0447 1979 hashParamTable[587].size = sizeof(device.plcs.regulator.settings.reference);
Diletant 173:7f938afb0447 1980 hashParamTable[588].hash = 0xdc27f931;
Diletant 173:7f938afb0447 1981 hashParamTable[588].ref = &device.plcs.regulator.settings.transfer.points;
Diletant 173:7f938afb0447 1982 hashParamTable[588].size = sizeof(device.plcs.regulator.settings.transfer.points);
Diletant 173:7f938afb0447 1983 hashParamTable[589].hash = 0xdc5b0112;
Diletant 173:7f938afb0447 1984 hashParamTable[589].ref = &device.sequencer.output.logic.settings.enabled;
Diletant 173:7f938afb0447 1985 hashParamTable[589].size = sizeof(device.sequencer.output.logic.settings.enabled);
Diletant 173:7f938afb0447 1986 hashParamTable[590].hash = 0xdc63d6ee;
Diletant 173:7f938afb0447 1987 hashParamTable[590].ref = &device.plcs.bias.settings.transfer.raw[11];
Diletant 173:7f938afb0447 1988 hashParamTable[590].size = sizeof(device.plcs.bias.settings.transfer.raw[11]);
Diletant 173:7f938afb0447 1989 hashParamTable[591].hash = 0xdceeafd;
Diletant 173:7f938afb0447 1990 hashParamTable[591].ref = &device.dither.detector.settings.filter.factor[7];
Diletant 173:7f938afb0447 1991 hashParamTable[591].size = sizeof(device.dither.detector.settings.filter.factor[7]);
Diletant 173:7f938afb0447 1992 hashParamTable[592].hash = 0xdd3a1bed;
Diletant 173:7f938afb0447 1993 hashParamTable[592].ref = &device.dither.amplitude.settings.transfer.error[9];
Diletant 173:7f938afb0447 1994 hashParamTable[592].size = sizeof(device.dither.amplitude.settings.transfer.error[9]);
Diletant 173:7f938afb0447 1995 hashParamTable[593].hash = 0xdd660fa2;
Diletant 173:7f938afb0447 1996 hashParamTable[593].ref = &device.plcs.reset.up.voltage[1];
Diletant 173:7f938afb0447 1997 hashParamTable[593].size = sizeof(device.plcs.reset.up.voltage[1]);
Diletant 173:7f938afb0447 1998 hashParamTable[594].hash = 0xdd73b0b5;
Diletant 173:7f938afb0447 1999 hashParamTable[594].ref = &device.dither.amplitude.state.scale;
Diletant 173:7f938afb0447 2000 hashParamTable[594].size = sizeof(device.dither.amplitude.state.scale);
Diletant 173:7f938afb0447 2001 hashParamTable[595].hash = 0xdeb12f6a;
Diletant 173:7f938afb0447 2002 hashParamTable[595].ref = &device.plcs.reset.down.duration[0];
Diletant 173:7f938afb0447 2003 hashParamTable[595].size = sizeof(device.plcs.reset.down.duration[0]);
Diletant 173:7f938afb0447 2004 hashParamTable[596].hash = 0xdef61523;
Diletant 173:7f938afb0447 2005 hashParamTable[596].ref = &device.plcs.output.settings.transfer.code[8];
Diletant 173:7f938afb0447 2006 hashParamTable[596].size = sizeof(device.plcs.output.settings.transfer.code[8]);
Diletant 173:7f938afb0447 2007 hashParamTable[597].hash = 0xdf13853a;
Diletant 173:7f938afb0447 2008 hashParamTable[597].ref = &device.dither.frequency.state.scale;
Diletant 173:7f938afb0447 2009 hashParamTable[597].size = sizeof(device.dither.frequency.state.scale);
Diletant 173:7f938afb0447 2010 hashParamTable[598].hash = 0xdf36e262;
Diletant 173:7f938afb0447 2011 hashParamTable[598].ref = &device.isacs.output.settings.transfer.code[11];
Diletant 173:7f938afb0447 2012 hashParamTable[598].size = sizeof(device.isacs.output.settings.transfer.code[11]);
Diletant 173:7f938afb0447 2013 hashParamTable[599].hash = 0xdf446d81;
Diletant 173:7f938afb0447 2014 hashParamTable[599].ref = &device.plcs.regulator.settings.transfer.error[3];
Diletant 173:7f938afb0447 2015 hashParamTable[599].size = sizeof(device.plcs.regulator.settings.transfer.error[3]);
Diletant 173:7f938afb0447 2016 hashParamTable[600].hash = 0xdfa31407;
Diletant 173:7f938afb0447 2017 hashParamTable[600].ref = &device.sequencer.output.analog.settings.transfer.code[0];
Diletant 173:7f938afb0447 2018 hashParamTable[600].size = sizeof(device.sequencer.output.analog.settings.transfer.code[0]);
Diletant 173:7f938afb0447 2019 hashParamTable[601].hash = 0xdfb1e2e8;
Diletant 173:7f938afb0447 2020 hashParamTable[601].ref = &device.dither.frequency.settings.transfer.correction[5];
Diletant 173:7f938afb0447 2021 hashParamTable[601].size = sizeof(device.dither.frequency.settings.transfer.correction[5]);
Diletant 173:7f938afb0447 2022 hashParamTable[602].hash = 0xe06e3b16;
Diletant 173:7f938afb0447 2023 hashParamTable[602].ref = &device.plcs.reset.up.temperature[12];
Diletant 173:7f938afb0447 2024 hashParamTable[602].size = sizeof(device.plcs.reset.up.temperature[12]);
Diletant 173:7f938afb0447 2025 hashParamTable[603].hash = 0xe0dc3b87;
Diletant 173:7f938afb0447 2026 hashParamTable[603].ref = &device.plcs.bias.state.counter;
Diletant 173:7f938afb0447 2027 hashParamTable[603].size = sizeof(device.plcs.bias.state.counter);
Diletant 173:7f938afb0447 2028 hashParamTable[604].hash = 0xe0ee5765;
Diletant 173:7f938afb0447 2029 hashParamTable[604].ref = &device.sequencer.sampler.settings.sequence[10];
Diletant 173:7f938afb0447 2030 hashParamTable[604].size = sizeof(device.sequencer.sampler.settings.sequence[10]);
Diletant 173:7f938afb0447 2031 hashParamTable[605].hash = 0xe19a70a4;
Diletant 173:7f938afb0447 2032 hashParamTable[605].ref = &device.plcs.reset.up.duration[2];
Diletant 173:7f938afb0447 2033 hashParamTable[605].size = sizeof(device.plcs.reset.up.duration[2]);
Diletant 173:7f938afb0447 2034 hashParamTable[606].hash = 0xe19d675c;
Diletant 173:7f938afb0447 2035 hashParamTable[606].ref = &device.sequencer.sampler.settings.sequence[0];
Diletant 173:7f938afb0447 2036 hashParamTable[606].size = sizeof(device.sequencer.sampler.settings.sequence[0]);
Diletant 173:7f938afb0447 2037 hashParamTable[607].hash = 0xe1c644d8;
Diletant 173:7f938afb0447 2038 hashParamTable[607].ref = &device.dither.frequency.settings.transfer.error[5];
Diletant 173:7f938afb0447 2039 hashParamTable[607].size = sizeof(device.dither.frequency.settings.transfer.error[5]);
Diletant 173:7f938afb0447 2040 hashParamTable[608].hash = 0xe232bc2d;
Diletant 173:7f938afb0447 2041 hashParamTable[608].ref = &device.isacs.output.settings.transfer.code[1];
Diletant 173:7f938afb0447 2042 hashParamTable[608].size = sizeof(device.isacs.output.settings.transfer.code[1]);
Diletant 173:7f938afb0447 2043 hashParamTable[609].hash = 0xe270ebef;
Diletant 173:7f938afb0447 2044 hashParamTable[609].ref = &device.plcs.reset.down.voltage[6];
Diletant 173:7f938afb0447 2045 hashParamTable[609].size = sizeof(device.plcs.reset.down.voltage[6]);
Diletant 173:7f938afb0447 2046 hashParamTable[610].hash = 0xe27b6d90;
Diletant 173:7f938afb0447 2047 hashParamTable[610].ref = &device.isacs.input.settings.transfer.voltage[2];
Diletant 173:7f938afb0447 2048 hashParamTable[610].size = sizeof(device.isacs.input.settings.transfer.voltage[2]);
Diletant 173:7f938afb0447 2049 hashParamTable[611].hash = 0xe2a8e93c;
Diletant 173:7f938afb0447 2050 hashParamTable[611].ref = &device.sequencer.sampler.settings.sequence[20];
Diletant 173:7f938afb0447 2051 hashParamTable[611].size = sizeof(device.sequencer.sampler.settings.sequence[20]);
Diletant 173:7f938afb0447 2052 hashParamTable[612].hash = 0xe2e725d0;
Diletant 173:7f938afb0447 2053 hashParamTable[612].ref = &device.sequencer.output.analog.settings.transfer.voltage[11];
Diletant 173:7f938afb0447 2054 hashParamTable[612].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[11]);
Diletant 173:7f938afb0447 2055 hashParamTable[613].hash = 0xe34cfca4;
Diletant 173:7f938afb0447 2056 hashParamTable[613].ref = &device.dither.detector.settings.transfer.raw[9];
Diletant 173:7f938afb0447 2057 hashParamTable[613].size = sizeof(device.dither.detector.settings.transfer.raw[9]);
Diletant 173:7f938afb0447 2058 hashParamTable[614].hash = 0xe36a830b;
Diletant 173:7f938afb0447 2059 hashParamTable[614].ref = &device.sequencer.sampler.settings.sequence[30];
Diletant 173:7f938afb0447 2060 hashParamTable[614].size = sizeof(device.sequencer.sampler.settings.sequence[30]);
Diletant 173:7f938afb0447 2061 hashParamTable[615].hash = 0xe3833fda;
Diletant 173:7f938afb0447 2062 hashParamTable[615].ref = &device.plcs.reset.up.voltage[15];
Diletant 173:7f938afb0447 2063 hashParamTable[615].size = sizeof(device.plcs.reset.up.voltage[15]);
Diletant 173:7f938afb0447 2064 hashParamTable[616].hash = 0xe49c97ed;
Diletant 173:7f938afb0447 2065 hashParamTable[616].ref = &device.isacs.potentiometers.settings.b;
Diletant 173:7f938afb0447 2066 hashParamTable[616].size = sizeof(device.isacs.potentiometers.settings.b);
Diletant 173:7f938afb0447 2067 hashParamTable[617].hash = 0xe55b8142;
Diletant 173:7f938afb0447 2068 hashParamTable[617].ref = &device.plcs.detector.state.in[0];
Diletant 173:7f938afb0447 2069 hashParamTable[617].size = sizeof(device.plcs.detector.state.in[0]);
Diletant 173:7f938afb0447 2070 hashParamTable[618].hash = 0xe5d7816b;
Diletant 173:7f938afb0447 2071 hashParamTable[618].ref = &device.dither.detector.settings.transfer.restored[6];
Diletant 173:7f938afb0447 2072 hashParamTable[618].size = sizeof(device.dither.detector.settings.transfer.restored[6]);
Diletant 173:7f938afb0447 2073 hashParamTable[619].hash = 0xe60d989f;
Diletant 173:7f938afb0447 2074 hashParamTable[619].ref = &device.isacs.output.state.voltage;
Diletant 173:7f938afb0447 2075 hashParamTable[619].size = sizeof(device.isacs.output.state.voltage);
Diletant 173:7f938afb0447 2076 hashParamTable[620].hash = 0xe61af4e;
Diletant 173:7f938afb0447 2077 hashParamTable[620].ref = &device.sequencer.output.analog.settings.transfer.code[9];
Diletant 173:7f938afb0447 2078 hashParamTable[620].size = sizeof(device.sequencer.output.analog.settings.transfer.code[9]);
Diletant 173:7f938afb0447 2079 hashParamTable[621].hash = 0xe625958e;
Diletant 173:7f938afb0447 2080 hashParamTable[621].ref = &device.sequencer.sampler.settings.sequence[40];
Diletant 173:7f938afb0447 2081 hashParamTable[621].size = sizeof(device.sequencer.sampler.settings.sequence[40]);
Diletant 173:7f938afb0447 2082 hashParamTable[622].hash = 0xe64ee88e;
Diletant 173:7f938afb0447 2083 hashParamTable[622].ref = &device.plcs.output.settings.transfer.voltage[1];
Diletant 173:7f938afb0447 2084 hashParamTable[622].size = sizeof(device.plcs.output.settings.transfer.voltage[1]);
Diletant 173:7f938afb0447 2085 hashParamTable[623].hash = 0xe64f1401;
Diletant 173:7f938afb0447 2086 hashParamTable[623].ref = &device.dither.cycle.state.pin1;
Diletant 173:7f938afb0447 2087 hashParamTable[623].size = sizeof(device.dither.cycle.state.pin1);
Diletant 173:7f938afb0447 2088 hashParamTable[624].hash = 0xe723ebb2;
Diletant 173:7f938afb0447 2089 hashParamTable[624].ref = &device.sequencer.sampler.state.sample[1];
Diletant 173:7f938afb0447 2090 hashParamTable[624].size = sizeof(device.sequencer.sampler.state.sample[1]);
Diletant 173:7f938afb0447 2091 hashParamTable[625].hash = 0xe77e6e07;
Diletant 173:7f938afb0447 2092 hashParamTable[625].ref = &device.isacs.input.settings.transfer.code[14];
Diletant 173:7f938afb0447 2093 hashParamTable[625].size = sizeof(device.isacs.input.settings.transfer.code[14]);
Diletant 173:7f938afb0447 2094 hashParamTable[626].hash = 0xe7e7ffb9;
Diletant 173:7f938afb0447 2095 hashParamTable[626].ref = &device.sequencer.sampler.settings.sequence[50];
Diletant 173:7f938afb0447 2096 hashParamTable[626].size = sizeof(device.sequencer.sampler.settings.sequence[50]);
Diletant 173:7f938afb0447 2097 hashParamTable[627].hash = 0xe7f0684b;
Diletant 173:7f938afb0447 2098 hashParamTable[627].ref = &device.isacs.regulator.settings.start.reference;
Diletant 173:7f938afb0447 2099 hashParamTable[627].size = sizeof(device.isacs.regulator.settings.start.reference);
Diletant 173:7f938afb0447 2100 hashParamTable[628].hash = 0xe8505076;
Diletant 173:7f938afb0447 2101 hashParamTable[628].ref = &device.plcs.bias.settings.transfer.normalized[1];
Diletant 173:7f938afb0447 2102 hashParamTable[628].size = sizeof(device.plcs.bias.settings.transfer.normalized[1]);
Diletant 173:7f938afb0447 2103 hashParamTable[629].hash = 0xe9feab5;
Diletant 173:7f938afb0447 2104 hashParamTable[629].ref = &device.dither.frequency.state.min;
Diletant 173:7f938afb0447 2105 hashParamTable[629].size = sizeof(device.dither.frequency.state.min);
Diletant 173:7f938afb0447 2106 hashParamTable[630].hash = 0xeae5bf6a;
Diletant 173:7f938afb0447 2107 hashParamTable[630].ref = &device.controller.I2C.state.CON0;
Diletant 173:7f938afb0447 2108 hashParamTable[630].size = sizeof(device.controller.I2C.state.CON0);
Diletant 173:7f938afb0447 2109 hashParamTable[631].hash = 0xeb60d948;
Diletant 173:7f938afb0447 2110 hashParamTable[631].ref = &device.sequencer.output.analog.settings.transfer.voltage[1];
Diletant 173:7f938afb0447 2111 hashParamTable[631].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[1]);
Diletant 173:7f938afb0447 2112 hashParamTable[632].hash = 0xeb91ca49;
Diletant 173:7f938afb0447 2113 hashParamTable[632].ref = &device.plcs.regulator.settings.transfer.correction[10];
Diletant 173:7f938afb0447 2114 hashParamTable[632].size = sizeof(device.plcs.regulator.settings.transfer.correction[10]);
Diletant 173:7f938afb0447 2115 hashParamTable[633].hash = 0xec874de8;
Diletant 173:7f938afb0447 2116 hashParamTable[633].ref = &device.plcs.reset.down.duration[2];
Diletant 173:7f938afb0447 2117 hashParamTable[633].size = sizeof(device.plcs.reset.down.duration[2]);
Diletant 173:7f938afb0447 2118 hashParamTable[634].hash = 0xed0080e0;
Diletant 173:7f938afb0447 2119 hashParamTable[634].ref = &device.isacs.output.settings.transfer.code[13];
Diletant 173:7f938afb0447 2120 hashParamTable[634].size = sizeof(device.isacs.output.settings.transfer.code[13]);
Diletant 173:7f938afb0447 2121 hashParamTable[635].hash = 0xed720f03;
Diletant 173:7f938afb0447 2122 hashParamTable[635].ref = &device.plcs.regulator.settings.transfer.error[1];
Diletant 173:7f938afb0447 2123 hashParamTable[635].size = sizeof(device.plcs.regulator.settings.transfer.error[1]);
Diletant 173:7f938afb0447 2124 hashParamTable[636].hash = 0xed87806a;
Diletant 173:7f938afb0447 2125 hashParamTable[636].ref = &device.dither.frequency.settings.transfer.correction[7];
Diletant 173:7f938afb0447 2126 hashParamTable[636].size = sizeof(device.dither.frequency.settings.transfer.correction[7]);
Diletant 173:7f938afb0447 2127 hashParamTable[637].hash = 0xed95321c;
Diletant 173:7f938afb0447 2128 hashParamTable[637].ref = &device.isacs.potentiometers.state.b;
Diletant 173:7f938afb0447 2129 hashParamTable[637].size = sizeof(device.isacs.potentiometers.state.b);
Diletant 173:7f938afb0447 2130 hashParamTable[638].hash = 0xed957685;
Diletant 173:7f938afb0447 2131 hashParamTable[638].ref = &device.sequencer.output.analog.settings.transfer.code[2];
Diletant 173:7f938afb0447 2132 hashParamTable[638].size = sizeof(device.sequencer.output.analog.settings.transfer.code[2]);
Diletant 173:7f938afb0447 2133 hashParamTable[639].hash = 0xed9a9821;
Diletant 173:7f938afb0447 2134 hashParamTable[639].ref = &device.plcs.output.settings.transfer.voltage[14];
Diletant 173:7f938afb0447 2135 hashParamTable[639].size = sizeof(device.plcs.output.settings.transfer.voltage[14]);
Diletant 173:7f938afb0447 2136 hashParamTable[640].hash = 0xee55b46c;
Diletant 173:7f938afb0447 2137 hashParamTable[640].ref = &device.plcs.bias.settings.transfer.raw[13];
Diletant 173:7f938afb0447 2138 hashParamTable[640].size = sizeof(device.plcs.bias.settings.transfer.raw[13]);
Diletant 173:7f938afb0447 2139 hashParamTable[641].hash = 0xee9e0296;
Diletant 173:7f938afb0447 2140 hashParamTable[641].ref = &device.plcs.reset.down.voltage[15];
Diletant 173:7f938afb0447 2141 hashParamTable[641].size = sizeof(device.plcs.reset.down.voltage[15]);
Diletant 173:7f938afb0447 2142 hashParamTable[642].hash = 0xef506d20;
Diletant 173:7f938afb0447 2143 hashParamTable[642].ref = &device.plcs.reset.up.voltage[3];
Diletant 173:7f938afb0447 2144 hashParamTable[642].size = sizeof(device.plcs.reset.up.voltage[3]);
Diletant 173:7f938afb0447 2145 hashParamTable[643].hash = 0xf14b6137;
Diletant 173:7f938afb0447 2146 hashParamTable[643].ref = &device.plcs.bias.settings.transfer.normalized[0];
Diletant 173:7f938afb0447 2147 hashParamTable[643].size = sizeof(device.plcs.bias.settings.transfer.normalized[0]);
Diletant 173:7f938afb0447 2148 hashParamTable[644].hash = 0xf27be809;
Diletant 173:7f938afb0447 2149 hashParamTable[644].ref = &device.sequencer.output.analog.settings.transfer.voltage[0];
Diletant 173:7f938afb0447 2150 hashParamTable[644].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[0]);
Diletant 173:7f938afb0447 2151 hashParamTable[645].hash = 0xf28afb08;
Diletant 173:7f938afb0447 2152 hashParamTable[645].ref = &device.plcs.regulator.settings.transfer.correction[11];
Diletant 173:7f938afb0447 2153 hashParamTable[645].size = sizeof(device.plcs.regulator.settings.transfer.correction[11]);
Diletant 173:7f938afb0447 2154 hashParamTable[646].hash = 0xf34ae6a;
Diletant 173:7f938afb0447 2155 hashParamTable[646].ref = &device.plcs.output.settings.transfer.code[1];
Diletant 173:7f938afb0447 2156 hashParamTable[646].size = sizeof(device.plcs.output.settings.transfer.code[1]);
Diletant 173:7f938afb0447 2157 hashParamTable[647].hash = 0xf41bb1a1;
Diletant 173:7f938afb0447 2158 hashParamTable[647].ref = &device.isacs.output.settings.transfer.code[12];
Diletant 173:7f938afb0447 2159 hashParamTable[647].size = sizeof(device.isacs.output.settings.transfer.code[12]);
Diletant 173:7f938afb0447 2160 hashParamTable[648].hash = 0xf4693e42;
Diletant 173:7f938afb0447 2161 hashParamTable[648].ref = &device.plcs.regulator.settings.transfer.error[0];
Diletant 173:7f938afb0447 2162 hashParamTable[648].size = sizeof(device.plcs.regulator.settings.transfer.error[0]);
Diletant 173:7f938afb0447 2163 hashParamTable[649].hash = 0xf481a960;
Diletant 173:7f938afb0447 2164 hashParamTable[649].ref = &device.plcs.output.settings.transfer.voltage[15];
Diletant 173:7f938afb0447 2165 hashParamTable[649].size = sizeof(device.plcs.output.settings.transfer.voltage[15]);
Diletant 173:7f938afb0447 2166 hashParamTable[650].hash = 0xf48e47c4;
Diletant 173:7f938afb0447 2167 hashParamTable[650].ref = &device.sequencer.output.analog.settings.transfer.code[3];
Diletant 173:7f938afb0447 2168 hashParamTable[650].size = sizeof(device.sequencer.output.analog.settings.transfer.code[3]);
Diletant 173:7f938afb0447 2169 hashParamTable[651].hash = 0xf49cb12b;
Diletant 173:7f938afb0447 2170 hashParamTable[651].ref = &device.dither.frequency.settings.transfer.correction[6];
Diletant 173:7f938afb0447 2171 hashParamTable[651].size = sizeof(device.dither.frequency.settings.transfer.correction[6]);
Diletant 173:7f938afb0447 2172 hashParamTable[652].hash = 0xf5502fff;
Diletant 173:7f938afb0447 2173 hashParamTable[652].ref = &device.plcs.reference.settings.delta;
Diletant 173:7f938afb0447 2174 hashParamTable[652].size = sizeof(device.plcs.reference.settings.delta);
Diletant 173:7f938afb0447 2175 hashParamTable[653].hash = 0xf59c7ca9;
Diletant 173:7f938afb0447 2176 hashParamTable[653].ref = &device.plcs.reset.down.duration[3];
Diletant 173:7f938afb0447 2177 hashParamTable[653].size = sizeof(device.plcs.reset.down.duration[3]);
Diletant 173:7f938afb0447 2178 hashParamTable[654].hash = 0xf64b5c61;
Diletant 173:7f938afb0447 2179 hashParamTable[654].ref = &device.plcs.reset.up.voltage[2];
Diletant 173:7f938afb0447 2180 hashParamTable[654].size = sizeof(device.plcs.reset.up.voltage[2]);
Diletant 173:7f938afb0447 2181 hashParamTable[655].hash = 0xf739423;
Diletant 173:7f938afb0447 2182 hashParamTable[655].ref = &device.plcs.reset.down.duration[9];
Diletant 173:7f938afb0447 2183 hashParamTable[655].size = sizeof(device.plcs.reset.down.duration[9]);
Diletant 173:7f938afb0447 2184 hashParamTable[656].hash = 0xf74e852d;
Diletant 173:7f938afb0447 2185 hashParamTable[656].ref = &device.plcs.bias.settings.transfer.raw[12];
Diletant 173:7f938afb0447 2186 hashParamTable[656].size = sizeof(device.plcs.bias.settings.transfer.raw[12]);
Diletant 173:7f938afb0447 2187 hashParamTable[657].hash = 0xf78533d7;
Diletant 173:7f938afb0447 2188 hashParamTable[657].ref = &device.plcs.reset.down.voltage[14];
Diletant 173:7f938afb0447 2189 hashParamTable[657].size = sizeof(device.plcs.reset.down.voltage[14]);
Diletant 173:7f938afb0447 2190 hashParamTable[658].hash = 0xf88141e5;
Diletant 173:7f938afb0447 2191 hashParamTable[658].ref = &device.plcs.reset.up.duration[3];
Diletant 173:7f938afb0447 2192 hashParamTable[658].size = sizeof(device.plcs.reset.up.duration[3]);
Diletant 173:7f938afb0447 2193 hashParamTable[659].hash = 0xf886561d;
Diletant 173:7f938afb0447 2194 hashParamTable[659].ref = &device.sequencer.sampler.settings.sequence[1];
Diletant 173:7f938afb0447 2195 hashParamTable[659].size = sizeof(device.sequencer.sampler.settings.sequence[1]);
Diletant 173:7f938afb0447 2196 hashParamTable[660].hash = 0xf8dd7599;
Diletant 173:7f938afb0447 2197 hashParamTable[660].ref = &device.dither.frequency.settings.transfer.error[4];
Diletant 173:7f938afb0447 2198 hashParamTable[660].size = sizeof(device.dither.frequency.settings.transfer.error[4]);
Diletant 173:7f938afb0447 2199 hashParamTable[661].hash = 0xf9750a57;
Diletant 173:7f938afb0447 2200 hashParamTable[661].ref = &device.plcs.reset.up.temperature[13];
Diletant 173:7f938afb0447 2201 hashParamTable[661].size = sizeof(device.plcs.reset.up.temperature[13]);
Diletant 173:7f938afb0447 2202 hashParamTable[662].hash = 0xf9f56624;
Diletant 173:7f938afb0447 2203 hashParamTable[662].ref = &device.sequencer.sampler.settings.sequence[11];
Diletant 173:7f938afb0447 2204 hashParamTable[662].size = sizeof(device.sequencer.sampler.settings.sequence[11]);
Diletant 173:7f938afb0447 2205 hashParamTable[663].hash = 0xfa57cde5;
Diletant 173:7f938afb0447 2206 hashParamTable[663].ref = &device.dither.detector.settings.transfer.raw[8];
Diletant 173:7f938afb0447 2207 hashParamTable[663].size = sizeof(device.dither.detector.settings.transfer.raw[8]);
Diletant 173:7f938afb0447 2208 hashParamTable[664].hash = 0xfa71b24a;
Diletant 173:7f938afb0447 2209 hashParamTable[664].ref = &device.sequencer.sampler.settings.sequence[31];
Diletant 173:7f938afb0447 2210 hashParamTable[664].size = sizeof(device.sequencer.sampler.settings.sequence[31]);
Diletant 173:7f938afb0447 2211 hashParamTable[665].hash = 0xfa980e9b;
Diletant 173:7f938afb0447 2212 hashParamTable[665].ref = &device.plcs.reset.up.voltage[14];
Diletant 173:7f938afb0447 2213 hashParamTable[665].size = sizeof(device.plcs.reset.up.voltage[14]);
Diletant 173:7f938afb0447 2214 hashParamTable[666].hash = 0xfb298d6c;
Diletant 173:7f938afb0447 2215 hashParamTable[666].ref = &device.isacs.output.settings.transfer.code[0];
Diletant 173:7f938afb0447 2216 hashParamTable[666].size = sizeof(device.isacs.output.settings.transfer.code[0]);
Diletant 173:7f938afb0447 2217 hashParamTable[667].hash = 0xfb605cd1;
Diletant 173:7f938afb0447 2218 hashParamTable[667].ref = &device.isacs.input.settings.transfer.voltage[3];
Diletant 173:7f938afb0447 2219 hashParamTable[667].size = sizeof(device.isacs.input.settings.transfer.voltage[3]);
Diletant 173:7f938afb0447 2220 hashParamTable[668].hash = 0xfb6bdaae;
Diletant 173:7f938afb0447 2221 hashParamTable[668].ref = &device.plcs.reset.down.voltage[7];
Diletant 173:7f938afb0447 2222 hashParamTable[668].size = sizeof(device.plcs.reset.down.voltage[7]);
Diletant 173:7f938afb0447 2223 hashParamTable[669].hash = 0xfbb3d87d;
Diletant 173:7f938afb0447 2224 hashParamTable[669].ref = &device.sequencer.sampler.settings.sequence[21];
Diletant 173:7f938afb0447 2225 hashParamTable[669].size = sizeof(device.sequencer.sampler.settings.sequence[21]);
Diletant 173:7f938afb0447 2226 hashParamTable[670].hash = 0xfbbacb82;
Diletant 173:7f938afb0447 2227 hashParamTable[670].ref = &device.dither.pulse.state.fall;
Diletant 173:7f938afb0447 2228 hashParamTable[670].size = sizeof(device.dither.pulse.state.fall);
Diletant 173:7f938afb0447 2229 hashParamTable[671].hash = 0xfbfc1491;
Diletant 173:7f938afb0447 2230 hashParamTable[671].ref = &device.sequencer.output.analog.settings.transfer.voltage[10];
Diletant 173:7f938afb0447 2231 hashParamTable[671].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[10]);
Diletant 173:7f938afb0447 2232 hashParamTable[672].hash = 0xfc0531d4;
Diletant 173:7f938afb0447 2233 hashParamTable[672].ref = &device.controller.QEI.state.delta;
Diletant 173:7f938afb0447 2234 hashParamTable[672].size = sizeof(device.controller.QEI.state.delta);
Diletant 173:7f938afb0447 2235 hashParamTable[673].hash = 0xfc40b003;
Diletant 173:7f938afb0447 2236 hashParamTable[673].ref = &device.plcs.detector.state.in[1];
Diletant 173:7f938afb0447 2237 hashParamTable[673].size = sizeof(device.plcs.detector.state.in[1]);
Diletant 173:7f938afb0447 2238 hashParamTable[674].hash = 0xfcba70a1;
Diletant 173:7f938afb0447 2239 hashParamTable[674].ref = &device.sequencer.sampler.settings.sequence[61];
Diletant 173:7f938afb0447 2240 hashParamTable[674].size = sizeof(device.sequencer.sampler.settings.sequence[61]);
Diletant 173:7f938afb0447 2241 hashParamTable[675].hash = 0xfcccb02a;
Diletant 173:7f938afb0447 2242 hashParamTable[675].ref = &device.dither.detector.settings.transfer.restored[7];
Diletant 173:7f938afb0447 2243 hashParamTable[675].size = sizeof(device.dither.detector.settings.transfer.restored[7]);
Diletant 173:7f938afb0447 2244 hashParamTable[676].hash = 0xfceba7ea;
Diletant 173:7f938afb0447 2245 hashParamTable[676].ref = &device.controller.uart[1].state.DLL;
Diletant 173:7f938afb0447 2246 hashParamTable[676].size = sizeof(device.controller.uart[1].state.DLL);
Diletant 173:7f938afb0447 2247 hashParamTable[677].hash = 0xfe38daf3;
Diletant 173:7f938afb0447 2248 hashParamTable[677].ref = &device.sequencer.sampler.state.sample[0];
Diletant 173:7f938afb0447 2249 hashParamTable[677].size = sizeof(device.sequencer.sampler.state.sample[0]);
Diletant 173:7f938afb0447 2250 hashParamTable[678].hash = 0xfe655f46;
Diletant 173:7f938afb0447 2251 hashParamTable[678].ref = &device.isacs.input.settings.transfer.code[15];
Diletant 173:7f938afb0447 2252 hashParamTable[678].size = sizeof(device.isacs.input.settings.transfer.code[15]);
Diletant 173:7f938afb0447 2253 hashParamTable[679].hash = 0xfefccef8;
Diletant 173:7f938afb0447 2254 hashParamTable[679].ref = &device.sequencer.sampler.settings.sequence[51];
Diletant 173:7f938afb0447 2255 hashParamTable[679].size = sizeof(device.sequencer.sampler.settings.sequence[51]);
Diletant 173:7f938afb0447 2256 hashParamTable[680].hash = 0xff3ea4cf;
Diletant 173:7f938afb0447 2257 hashParamTable[680].ref = &device.sequencer.sampler.settings.sequence[41];
Diletant 173:7f938afb0447 2258 hashParamTable[680].size = sizeof(device.sequencer.sampler.settings.sequence[41]);
Diletant 173:7f938afb0447 2259 hashParamTable[681].hash = 0xff55d9cf;
Diletant 173:7f938afb0447 2260 hashParamTable[681].ref = &device.plcs.output.settings.transfer.voltage[0];
Diletant 173:7f938afb0447 2261 hashParamTable[681].size = sizeof(device.plcs.output.settings.transfer.voltage[0]);
Diletant 173:7f938afb0447 2262 hashParamTable[682].hash = 0xff61c20;
Diletant 173:7f938afb0447 2263 hashParamTable[682].ref = &device.dither.frequency.settings.transfer.correction[10];
Diletant 173:7f938afb0447 2264 hashParamTable[682].size = sizeof(device.dither.frequency.settings.transfer.correction[10]);
Diletant 161:efd949e8d536 2265 }
Diletant 161:efd949e8d536 2266
Diletant 161:efd949e8d536 2267 void InitHashFuncTable(void) {
Diletant 161:efd949e8d536 2268 hashFuncTable[0].hash = 0x71f16e12;
Diletant 161:efd949e8d536 2269 hashFuncTable[0].ref = DeviceFlashWriteAll;
Diletant 161:efd949e8d536 2270 hashFuncTable[0].resultSize = sizeof(void);
Diletant 161:efd949e8d536 2271 hashFuncTable[0].paramCount = 0;
Diletant 161:efd949e8d536 2272 hashFuncTable[1].hash = 0xd84a94cf;
Diletant 161:efd949e8d536 2273 hashFuncTable[1].ref = DeviceFlashReadAll;
Diletant 161:efd949e8d536 2274 hashFuncTable[1].resultSize = sizeof(void);
Diletant 161:efd949e8d536 2275 hashFuncTable[1].paramCount = 0;
Diletant 161:efd949e8d536 2276 hashFuncTable[2].hash = 0xd93b80f4;
Diletant 161:efd949e8d536 2277 hashFuncTable[2].ref = DeviceStartLightUp;
Diletant 161:efd949e8d536 2278 hashFuncTable[2].resultSize = sizeof(void);
Diletant 161:efd949e8d536 2279 hashFuncTable[2].paramCount = 0;
Diletant 161:efd949e8d536 2280 }