123

Dependencies:   mbed

Fork of LG by igor Apu

Committer:
Kovalev_D
Date:
Wed Oct 19 10:55:05 2016 +0000
Revision:
197:7a05523bf588
Parent:
183:c7a9c309086c
modul

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Diletant 137:14a0c452cf32 1 #include "Device.h"
Diletant 177:672ef279c8e0 2 #include <stdio.h>
Diletant 137:14a0c452cf32 3
Diletant 177:672ef279c8e0 4 extern unsigned int SystemCoreClock1;
Diletant 137:14a0c452cf32 5 Device device;
Diletant 137:14a0c452cf32 6 HashParam hashParamTable[HASH_PARAM_COUNT];
Diletant 149:abbf7663d27d 7 HashFunc hashFuncTable[HASH_FUNC_COUNT];
Diletant 137:14a0c452cf32 8
Diletant 177:672ef279c8e0 9 //
Diletant 173:7f938afb0447 10 //Measurement cycle definitions and functions
Diletant 177:672ef279c8e0 11 //
Diletant 173:7f938afb0447 12 void DeviceInitMeasurementCycleDefaultSettings(void){
Diletant 173:7f938afb0447 13 }
Diletant 156:e68ee0bcdcda 14
Diletant 173:7f938afb0447 15 void DeviceInitMeasurementCycleState(void){
Diletant 173:7f938afb0447 16 device.measurement.counter = 0;
Diletant 173:7f938afb0447 17 device.measurement.length = 32;
Diletant 156:e68ee0bcdcda 18 }
Diletant 182:2bd8ec44998f 19
Diletant 173:7f938afb0447 20 void DeviceMeasurementInterruptHandler(void) {
Diletant 173:7f938afb0447 21 //Read QEI
Diletant 174:0f86eedd511c 22 qeiProcess(); //Memo: call first to read data immediately
Diletant 174:0f86eedd511c 23
Diletant 174:0f86eedd511c 24 //Raw counters processing
Diletant 173:7f938afb0447 25 countersProcess();
Diletant 173:7f938afb0447 26
Diletant 173:7f938afb0447 27 //Receive ADCs samples using SSP
Diletant 173:7f938afb0447 28 sspReceive();
Diletant 174:0f86eedd511c 29 //Process temperature sense system
Diletant 174:0f86eedd511c 30 tssProcess(); //Memo: call before temperature-dependent systems
Diletant 174:0f86eedd511c 31 //Process current control system
Diletant 174:0f86eedd511c 32 ccsProcess(); //Memo: call before current-dependent systems
Diletant 173:7f938afb0447 33 //Process ACS
Diletant 173:7f938afb0447 34 isacsProcess();
Diletant 173:7f938afb0447 35 plcsProcess();
Diletant 173:7f938afb0447 36 //Transmit DACs values using SSP
Diletant 173:7f938afb0447 37 sspTransmit(device.measurement.counter & 1);
Diletant 173:7f938afb0447 38
Diletant 174:0f86eedd511c 39 sequencerProcess();
Diletant 174:0f86eedd511c 40
Diletant 174:0f86eedd511c 41 //Process dither ACS
Diletant 174:0f86eedd511c 42 ditherProcess(); //Memo: call after counters processing
Diletant 174:0f86eedd511c 43
Diletant 174:0f86eedd511c 44 //Process error model
Diletant 174:0f86eedd511c 45 emProcess(); //Memo: process error model with updated device state parameters, therefore AFTER other systems processing
Diletant 174:0f86eedd511c 46
Diletant 173:7f938afb0447 47 //Update measurement cycle counter
Diletant 173:7f938afb0447 48 device.measurement.counter++;
Diletant 173:7f938afb0447 49 if (device.measurement.counter == device.measurement.length) device.measurement.counter = 0;
Diletant 173:7f938afb0447 50 //Reset dither 10mks resolution counter
Diletant 173:7f938afb0447 51 if (device.measurement.counter == 0) device.dither.pulse.state.counter = 0; //First dither half period
Diletant 173:7f938afb0447 52 if (device.measurement.counter == 16) device.dither.pulse.state.counter = 0;//Second dither half period
Diletant 156:e68ee0bcdcda 53 }
Diletant 182:2bd8ec44998f 54
Diletant 177:672ef279c8e0 55 //
Diletant 173:7f938afb0447 56 //Regular cycle definitions and functions
Diletant 177:672ef279c8e0 57 //
Diletant 173:7f938afb0447 58 void DeviceInitRegularCycleDefaultSettings(void) {
Diletant 156:e68ee0bcdcda 59 }
Diletant 137:14a0c452cf32 60
Diletant 173:7f938afb0447 61 void DeviceInitRegularCycleState(void) {
Diletant 156:e68ee0bcdcda 62 device.regular.event1Hz = 0;
Diletant 156:e68ee0bcdcda 63 device.regular.event500Hz = 0;
Diletant 156:e68ee0bcdcda 64 device.regular.event1K = 0;
Diletant 156:e68ee0bcdcda 65 device.regular.event10K = 0;
Diletant 156:e68ee0bcdcda 66 device.regular.event100K = 0;
Diletant 156:e68ee0bcdcda 67 device.regular.time100K = 0;
Diletant 156:e68ee0bcdcda 68 device.regular.time10K = 0;
Diletant 156:e68ee0bcdcda 69 device.regular.time1K = 0;
Diletant 156:e68ee0bcdcda 70 device.regular.time500Hz = 0;
Diletant 156:e68ee0bcdcda 71 device.regular.time1Hz = 0;
Diletant 183:c7a9c309086c 72 timersSetRegularPeriod(257); //257
Diletant 173:7f938afb0447 73 }
Diletant 173:7f938afb0447 74
Diletant 173:7f938afb0447 75 void DeviceStartRegularCycle(void) {
Diletant 173:7f938afb0447 76 DeviceStartRegularTimer();
Diletant 149:abbf7663d27d 77 }
Diletant 149:abbf7663d27d 78
Diletant 156:e68ee0bcdcda 79 void DeviceRegularEvent1Hz(void) {
Diletant 156:e68ee0bcdcda 80 if (device.regular.event1Hz) {
Diletant 156:e68ee0bcdcda 81 device.regular.event1Hz--;
Diletant 156:e68ee0bcdcda 82 device.regular.time1Hz++;
Diletant 156:e68ee0bcdcda 83
Diletant 161:efd949e8d536 84 DeviceLightUpDoCycle();
Diletant 156:e68ee0bcdcda 85 }
Diletant 156:e68ee0bcdcda 86 }
Diletant 156:e68ee0bcdcda 87
Diletant 156:e68ee0bcdcda 88 void DeviceRegularEvent500Hz(void) {
Diletant 156:e68ee0bcdcda 89 if (device.regular.event500Hz) {
Diletant 156:e68ee0bcdcda 90 device.regular.event500Hz--;
Diletant 156:e68ee0bcdcda 91 }
Diletant 156:e68ee0bcdcda 92 }
Diletant 156:e68ee0bcdcda 93
Diletant 156:e68ee0bcdcda 94 void DeviceRegularEvent1KHz(void) {
Diletant 156:e68ee0bcdcda 95 if (device.regular.event1K) {
Diletant 156:e68ee0bcdcda 96 device.regular.event1K--;
Diletant 156:e68ee0bcdcda 97 device.regular.time1K++;
Diletant 156:e68ee0bcdcda 98 device.regular.time500Hz++;
Diletant 156:e68ee0bcdcda 99 if (device.regular.time1K == 1000) {
Diletant 156:e68ee0bcdcda 100 device.regular.time1K = 0;
Diletant 156:e68ee0bcdcda 101 device.regular.event1Hz++;
Diletant 156:e68ee0bcdcda 102 }
Diletant 156:e68ee0bcdcda 103 if (device.regular.time500Hz == 2) {
Diletant 156:e68ee0bcdcda 104 device.regular.time500Hz = 0;
Diletant 156:e68ee0bcdcda 105 device.regular.event500Hz++;
Diletant 156:e68ee0bcdcda 106 }
Diletant 156:e68ee0bcdcda 107 }
Diletant 149:abbf7663d27d 108 }
Diletant 149:abbf7663d27d 109
Diletant 156:e68ee0bcdcda 110 void DeviceRegularEvent10KHz(void) {
Diletant 156:e68ee0bcdcda 111 if (device.regular.event10K) {
Diletant 156:e68ee0bcdcda 112 device.regular.event10K--;
Diletant 156:e68ee0bcdcda 113 device.regular.time10K++;
Diletant 156:e68ee0bcdcda 114 if (device.regular.time10K == 10){
Diletant 156:e68ee0bcdcda 115 device.regular.time10K = 0;
Diletant 156:e68ee0bcdcda 116 device.regular.event1K++;
Diletant 156:e68ee0bcdcda 117 }
Diletant 156:e68ee0bcdcda 118
Diletant 161:efd949e8d536 119 if ((device.user.response.type == RESPONSE_DELAYED) || (device.user.response.type == RESPONSE_PERIODIC)){
Diletant 161:efd949e8d536 120 device.user.response.counter += 100;
Diletant 182:2bd8ec44998f 121 if (device.user.response.counter >= device.user.response.trigger) {
Diletant 161:efd949e8d536 122 device.user.response.triggered = 1;
Diletant 161:efd949e8d536 123 device.user.response.counter = 0;
Diletant 156:e68ee0bcdcda 124 }
Diletant 156:e68ee0bcdcda 125 }
Diletant 156:e68ee0bcdcda 126 }
Diletant 156:e68ee0bcdcda 127 }
Diletant 156:e68ee0bcdcda 128
Diletant 156:e68ee0bcdcda 129 void DeviceRegularEvent100KHz(void) {
Diletant 156:e68ee0bcdcda 130 if (device.regular.event100K) {
Diletant 156:e68ee0bcdcda 131 device.regular.event100K--;
Diletant 156:e68ee0bcdcda 132
Diletant 156:e68ee0bcdcda 133 device.regular.time100K++;
Diletant 156:e68ee0bcdcda 134 if (device.regular.time100K == 10) {
Diletant 156:e68ee0bcdcda 135 device.regular.time100K = 0;
Diletant 156:e68ee0bcdcda 136 device.regular.event10K++;
Diletant 156:e68ee0bcdcda 137 }
Diletant 156:e68ee0bcdcda 138
Diletant 183:c7a9c309086c 139 //ditherCycle(); //Set/reset vibro 1/2 pins
Diletant 156:e68ee0bcdcda 140 }
Diletant 156:e68ee0bcdcda 141 }
Diletant 182:2bd8ec44998f 142
Diletant 156:e68ee0bcdcda 143 void DeviceRegularInterruptHandler(void) {
Diletant 156:e68ee0bcdcda 144 device.regular.event100K++;
Diletant 161:efd949e8d536 145 device.dither.pulse.state.counter++; //Dither 10 mks resolution counter
Diletant 183:c7a9c309086c 146
Diletant 183:c7a9c309086c 147 ditherCycle(); //Set/reset vibro 1/2 pins
Diletant 156:e68ee0bcdcda 148 }
Diletant 182:2bd8ec44998f 149
Diletant 177:672ef279c8e0 150 //
Diletant 177:672ef279c8e0 151 //Main cycle definitions and functions
Diletant 177:672ef279c8e0 152 //
Diletant 177:672ef279c8e0 153 void deviceCycle(void) {
Diletant 177:672ef279c8e0 154 //Service port communication
Diletant 177:672ef279c8e0 155 Concole();
Diletant 177:672ef279c8e0 156
Diletant 177:672ef279c8e0 157 if (ReadConcole()) {
Diletant 177:672ef279c8e0 158 if (device.service.buffer[0] == 'h') {
Diletant 177:672ef279c8e0 159 sprintf(device.service.buffer,"Compiled: %s %s.",__DATE__, __TIME__ ); WriteConcole();
Diletant 177:672ef279c8e0 160 sprintf(device.service.buffer,"--%03d:%03d:%02d:%02d--\r\n",device.regular.time1Hz,device.regular.time1K,device.regular.time10K,device.regular.time100K); WriteConcole();
Diletant 177:672ef279c8e0 161 } else if (device.service.buffer[0] == 'w') {
Diletant 177:672ef279c8e0 162 //Header
Diletant 177:672ef279c8e0 163 device.user.request.buffer.data[0] = 0xcc;
Diletant 177:672ef279c8e0 164 //Address
Diletant 177:672ef279c8e0 165 device.user.request.buffer.data[1] = 0x00;
Diletant 177:672ef279c8e0 166 //H_PARAM8_W: write 1-byte hash param
Diletant 177:672ef279c8e0 167 device.user.request.buffer.data[2] = 0xff;
Diletant 177:672ef279c8e0 168 device.user.request.buffer.data[3] = 0x10;
Diletant 177:672ef279c8e0 169 //Hash
Diletant 177:672ef279c8e0 170 device.user.request.buffer.data[4] = 0x60;
Diletant 177:672ef279c8e0 171 device.user.request.buffer.data[5] = 0x0f;
Diletant 177:672ef279c8e0 172 device.user.request.buffer.data[6] = 0x16;
Diletant 177:672ef279c8e0 173 device.user.request.buffer.data[7] = 0xe4;
Diletant 177:672ef279c8e0 174 //Value
Diletant 177:672ef279c8e0 175 device.user.request.buffer.data[8] = 0x01;
Diletant 177:672ef279c8e0 176 //Control sum
Diletant 177:672ef279c8e0 177 device.user.request.buffer.data[9] = 0x02;
Diletant 177:672ef279c8e0 178 device.user.request.buffer.data[10] = 0x79;
Diletant 177:672ef279c8e0 179 //Init buffer positions
Diletant 177:672ef279c8e0 180 device.user.request.buffer.start = 0;
Diletant 177:672ef279c8e0 181 device.user.request.buffer.end = 11;
Diletant 177:672ef279c8e0 182 device.user.request.buffer.empty = 0;
Diletant 177:672ef279c8e0 183 device.user.decoder.canceled = 0;
Diletant 177:672ef279c8e0 184
Diletant 177:672ef279c8e0 185 //Development message
Diletant 177:672ef279c8e0 186 sprintf(device.service.buffer,"Hash access request emulated: write address\r\n"); WriteConcole();
Diletant 177:672ef279c8e0 187 } else if (device.service.buffer[0] == 'r') {
Diletant 177:672ef279c8e0 188 //Header
Diletant 177:672ef279c8e0 189 device.user.request.buffer.data[0] = 0xcc;
Diletant 177:672ef279c8e0 190 //Address
Diletant 177:672ef279c8e0 191 device.user.request.buffer.data[1] = 0x00;
Diletant 177:672ef279c8e0 192 //H_PARAM8_R: read 1-byte hash param
Diletant 177:672ef279c8e0 193 device.user.request.buffer.data[2] = 0xff;
Diletant 177:672ef279c8e0 194 device.user.request.buffer.data[3] = 0x00;
Diletant 177:672ef279c8e0 195 //Hash
Diletant 177:672ef279c8e0 196 device.user.request.buffer.data[4] = 0x60;
Diletant 177:672ef279c8e0 197 device.user.request.buffer.data[5] = 0x0f;
Diletant 177:672ef279c8e0 198 device.user.request.buffer.data[6] = 0x16;
Diletant 177:672ef279c8e0 199 device.user.request.buffer.data[7] = 0xe4;
Diletant 177:672ef279c8e0 200 //Control sum
Diletant 177:672ef279c8e0 201 device.user.request.buffer.data[8] = 0x02;
Diletant 177:672ef279c8e0 202 device.user.request.buffer.data[9] = 0x68;
Diletant 177:672ef279c8e0 203 //Init buffer positions
Diletant 177:672ef279c8e0 204 device.user.request.buffer.start = 0;
Diletant 177:672ef279c8e0 205 device.user.request.buffer.end = 10;
Diletant 177:672ef279c8e0 206 device.user.request.buffer.empty = 0;
Diletant 177:672ef279c8e0 207 device.user.decoder.canceled = 0;
Diletant 177:672ef279c8e0 208
Diletant 177:672ef279c8e0 209 //Development message
Diletant 177:672ef279c8e0 210 sprintf(device.service.buffer,"Hash access request emulated: read address\r\n"); WriteConcole();
Diletant 177:672ef279c8e0 211 } else if (device.service.buffer[0] == 'l') {
Diletant 177:672ef279c8e0 212 DeviceStartLightUp();
Diletant 177:672ef279c8e0 213
Diletant 177:672ef279c8e0 214 //Development message
Diletant 177:672ef279c8e0 215 sprintf(device.service.buffer,"Light-up emulated\r\n"); WriteConcole();
Diletant 177:672ef279c8e0 216 }
Diletant 177:672ef279c8e0 217 }
Diletant 177:672ef279c8e0 218
Diletant 177:672ef279c8e0 219 //Host port communication
Diletant 177:672ef279c8e0 220 userReceive(); //Receive request from host
Diletant 177:672ef279c8e0 221 userDecodeRequests();//Decode host requests
Diletant 177:672ef279c8e0 222 userDecodePin();
Diletant 177:672ef279c8e0 223 userEncodeResponse();//Encode host response
Diletant 177:672ef279c8e0 224 userTransmit(); //Transmit response to host
Diletant 177:672ef279c8e0 225
Diletant 183:c7a9c309086c 226 i2cProcess();
Diletant 183:c7a9c309086c 227
Diletant 177:672ef279c8e0 228 //Process regular events
Diletant 177:672ef279c8e0 229 DeviceRegularEvent100KHz();
Diletant 177:672ef279c8e0 230 DeviceRegularEvent10KHz();
Diletant 177:672ef279c8e0 231 DeviceRegularEvent1KHz();
Diletant 177:672ef279c8e0 232 DeviceRegularEvent500Hz();
Diletant 177:672ef279c8e0 233 DeviceRegularEvent1Hz();
Diletant 177:672ef279c8e0 234 }
Diletant 156:e68ee0bcdcda 235
Diletant 177:672ef279c8e0 236 //
Diletant 173:7f938afb0447 237 //Device definitions and functions
Diletant 177:672ef279c8e0 238 //
Diletant 173:7f938afb0447 239 void DeviceInitDefaultSettings(void){
Diletant 173:7f938afb0447 240 device.user.address = 0;
Diletant 173:7f938afb0447 241
Diletant 173:7f938afb0447 242 //Init controller
Diletant 173:7f938afb0447 243 InitControllerDefaultSettings();
Diletant 173:7f938afb0447 244
Diletant 173:7f938afb0447 245 //Init units
Diletant 173:7f938afb0447 246 DeviceInitMeasurementCycleDefaultSettings();
Diletant 173:7f938afb0447 247 DeviceInitRegularCycleDefaultSettings();
Diletant 173:7f938afb0447 248 InitCountersDefaultSettings();
Diletant 173:7f938afb0447 249 InitDitherDefaultSettings();
Diletant 173:7f938afb0447 250 InitLightUpDefaultSettings();
Diletant 173:7f938afb0447 251 InitISACSDefaultSettings();
Diletant 173:7f938afb0447 252 InitSequencerDefaultSettings();
Diletant 173:7f938afb0447 253 InitPathLengthControlSystemDefaultSettings();
Diletant 174:0f86eedd511c 254 InitTSSDefaultSettings();
Diletant 174:0f86eedd511c 255 InitCCSDefaultSettings();
Diletant 182:2bd8ec44998f 256 InitUserDefaultSettings();
Diletant 174:0f86eedd511c 257 InitEMDefaultSettings();
Diletant 177:672ef279c8e0 258
Diletant 177:672ef279c8e0 259 #ifdef __DEVICE_DEBUG_H__
Diletant 177:672ef279c8e0 260 InitDebugDefaultSettings();
Diletant 177:672ef279c8e0 261 #endif
Diletant 173:7f938afb0447 262 }
Diletant 173:7f938afb0447 263
Diletant 173:7f938afb0447 264 void DeviceInitState(void) {
Diletant 173:7f938afb0447 265 //Init controller
Diletant 173:7f938afb0447 266 InitControllerState();
Diletant 173:7f938afb0447 267 //Init measurement cycle
Diletant 173:7f938afb0447 268 DeviceInitMeasurementCycleState();
Diletant 173:7f938afb0447 269 //Init regular cycle
Diletant 173:7f938afb0447 270 DeviceInitRegularCycleState();
Diletant 173:7f938afb0447 271 //Init counters
Diletant 173:7f938afb0447 272 InitCountersState();
Diletant 173:7f938afb0447 273 //Init dither
Diletant 173:7f938afb0447 274 InitDitherState();
Diletant 173:7f938afb0447 275 //Init light-up and back light unit
Diletant 173:7f938afb0447 276 InitLightUpState();
Diletant 173:7f938afb0447 277 //Init information signal amplitude control system
Diletant 173:7f938afb0447 278 InitISACSState();
Diletant 173:7f938afb0447 279 //Init sequencer
Diletant 173:7f938afb0447 280 InitSequencerState();
Diletant 173:7f938afb0447 281 //Init path length control system
Diletant 173:7f938afb0447 282 InitPathLengthControlSystemState();
Diletant 174:0f86eedd511c 283 //Init temperature sense system
Diletant 174:0f86eedd511c 284 InitTSSState();
Diletant 174:0f86eedd511c 285 //Init current control system
Diletant 174:0f86eedd511c 286 InitCCSState();
Diletant 173:7f938afb0447 287 //Init host communication protocol
Diletant 182:2bd8ec44998f 288 InitUserState();
Diletant 174:0f86eedd511c 289 //Init error model
Diletant 174:0f86eedd511c 290 InitEMState();
Diletant 177:672ef279c8e0 291
Diletant 177:672ef279c8e0 292 #ifdef __DEVICE_DEBUG_H__
Diletant 177:672ef279c8e0 293 InitDebugState();
Diletant 177:672ef279c8e0 294 #endif
Diletant 173:7f938afb0447 295 }
Diletant 173:7f938afb0447 296
Diletant 173:7f938afb0447 297 void DeviceInit(void) {
Diletant 173:7f938afb0447 298 //Init system
Diletant 173:7f938afb0447 299 SystemInit1(); // Инициализация контроллера: установка тактовых частот
Diletant 173:7f938afb0447 300 SystemCoreClockUpdate1(); // расчет тактовой частоты процессора перед инициализацией UART - 100MHz
Diletant 173:7f938afb0447 301
Diletant 173:7f938afb0447 302 //Init hash table
Diletant 173:7f938afb0447 303 InitHashParamTable();
Diletant 173:7f938afb0447 304 InitHashFuncTable();
Diletant 173:7f938afb0447 305
Diletant 173:7f938afb0447 306 //Load default settings
Diletant 173:7f938afb0447 307 DeviceInitDefaultSettings();
Diletant 173:7f938afb0447 308
Diletant 173:7f938afb0447 309 //Load from flash - override default settings
Diletant 173:7f938afb0447 310 DeviceFlashReadAll();
Diletant 173:7f938afb0447 311
Diletant 173:7f938afb0447 312 //Init state from settings
Diletant 173:7f938afb0447 313 DeviceInitState();
Diletant 173:7f938afb0447 314 }
Diletant 173:7f938afb0447 315
Diletant 173:7f938afb0447 316 void DeviceStart(void) {
Diletant 173:7f938afb0447 317 DeviceStartController();
Diletant 173:7f938afb0447 318 DeviceStartRegularCycle();
Diletant 174:0f86eedd511c 319 DeviceStartTSS();
Diletant 174:0f86eedd511c 320 DeviceStartCCS();
Diletant 173:7f938afb0447 321 DeviceStartCounters();
Diletant 173:7f938afb0447 322 DeviceStartDither();
Diletant 173:7f938afb0447 323 DeviceStartISACS();
Diletant 173:7f938afb0447 324 DeviceStartLightUp();
Diletant 173:7f938afb0447 325 DeviceStartSequencer();
Diletant 173:7f938afb0447 326 DeviceStartPLCS();
Diletant 182:2bd8ec44998f 327 DeviceStartUser();
Diletant 174:0f86eedd511c 328 DeviceStartEM();
Diletant 177:672ef279c8e0 329 #ifdef __DEVICE_DEBUG_H__
Diletant 177:672ef279c8e0 330 DeviceStartDebug();
Diletant 177:672ef279c8e0 331 #endif
Diletant 173:7f938afb0447 332 }
Diletant 173:7f938afb0447 333
Diletant 149:abbf7663d27d 334 /*
Diletant 149:abbf7663d27d 335 int32_t FindByHash(uint32_t hash){
Diletant 149:abbf7663d27d 336 for (uint32_t i = 0; i < HASH_PARAM_COUNT; i++){
Diletant 149:abbf7663d27d 337 if (hashParamTable[i].hash == hash) return i;
Diletant 149:abbf7663d27d 338 }
Diletant 149:abbf7663d27d 339 return -1;
Diletant 149:abbf7663d27d 340 }
Diletant 161:efd949e8d536 341 */
Diletant 161:efd949e8d536 342
Diletant 161:efd949e8d536 343 void InitHashParamTable(void){
Diletant 167:bedc0a9d559a 344 hashParamTable[0].hash = 0x1049db13;
Diletant 167:bedc0a9d559a 345 hashParamTable[0].ref = &device.controller.uart[0].state.DLM;
Diletant 167:bedc0a9d559a 346 hashParamTable[0].size = sizeof(device.controller.uart[0].state.DLM);
Diletant 167:bedc0a9d559a 347 hashParamTable[1].hash = 0x112bb416;
Diletant 167:bedc0a9d559a 348 hashParamTable[1].ref = &device.plcs.feedback.settings.transfer.normalized[0];
Diletant 167:bedc0a9d559a 349 hashParamTable[1].size = sizeof(device.plcs.feedback.settings.transfer.normalized[0]);
Diletant 177:672ef279c8e0 350 hashParamTable[2].hash = 0x11a33e2c;
Diletant 177:672ef279c8e0 351 hashParamTable[2].ref = &device.isacs.regulator.settings.transfer.correction[1];
Diletant 177:672ef279c8e0 352 hashParamTable[2].size = sizeof(device.isacs.regulator.settings.transfer.correction[1]);
Diletant 174:0f86eedd511c 353 hashParamTable[3].hash = 0x11b36a70;
Diletant 174:0f86eedd511c 354 hashParamTable[3].ref = &device.plcs.bias.settings.transfer.normalized[13];
Diletant 174:0f86eedd511c 355 hashParamTable[3].size = sizeof(device.plcs.bias.settings.transfer.normalized[13]);
Diletant 177:672ef279c8e0 356 hashParamTable[4].hash = 0x11fc88be;
Diletant 177:672ef279c8e0 357 hashParamTable[4].ref = &device.tss.temperature.settings.transfer.celsius[8];
Diletant 177:672ef279c8e0 358 hashParamTable[4].size = sizeof(device.tss.temperature.settings.transfer.celsius[8]);
Diletant 183:c7a9c309086c 359 hashParamTable[5].hash = 0x12372990;
Diletant 183:c7a9c309086c 360 hashParamTable[5].ref = &device.plcs.reset.down.settings.environment.target[3];
Diletant 183:c7a9c309086c 361 hashParamTable[5].size = sizeof(device.plcs.reset.down.settings.environment.target[3]);
Diletant 183:c7a9c309086c 362 hashParamTable[6].hash = 0x127b8c3c;
Diletant 183:c7a9c309086c 363 hashParamTable[6].ref = &device.plcs.feedback.settings.transfer.normalized[14];
Diletant 183:c7a9c309086c 364 hashParamTable[6].size = sizeof(device.plcs.feedback.settings.transfer.normalized[14]);
Diletant 183:c7a9c309086c 365 hashParamTable[7].hash = 0x1295d56a;
Diletant 183:c7a9c309086c 366 hashParamTable[7].ref = &device.plcs.reset.up.settings.environment.temperature[15];
Diletant 183:c7a9c309086c 367 hashParamTable[7].size = sizeof(device.plcs.reset.up.settings.environment.temperature[15]);
Diletant 183:c7a9c309086c 368 hashParamTable[8].hash = 0x12be4a8;
Diletant 183:c7a9c309086c 369 hashParamTable[8].ref = &device.plcs.reset.up.settings.environment.target[1];
Diletant 183:c7a9c309086c 370 hashParamTable[8].size = sizeof(device.plcs.reset.up.settings.environment.target[1]);
Diletant 183:c7a9c309086c 371 hashParamTable[9].hash = 0x12e85f36;
Diletant 183:c7a9c309086c 372 hashParamTable[9].ref = &device.dither.amplitude.settings.transfer.error[14];
Diletant 183:c7a9c309086c 373 hashParamTable[9].size = sizeof(device.dither.amplitude.settings.transfer.error[14]);
Diletant 183:c7a9c309086c 374 hashParamTable[10].hash = 0x12e884f8;
Diletant 183:c7a9c309086c 375 hashParamTable[10].ref = &device.plcs.regulator.state.enabled;
Diletant 183:c7a9c309086c 376 hashParamTable[10].size = sizeof(device.plcs.regulator.state.enabled);
Diletant 183:c7a9c309086c 377 hashParamTable[11].hash = 0x13519c41;
Diletant 183:c7a9c309086c 378 hashParamTable[11].ref = &device.plcs.reset.down.settings.environment.points;
Diletant 183:c7a9c309086c 379 hashParamTable[11].size = sizeof(device.plcs.reset.down.settings.environment.points);
Diletant 183:c7a9c309086c 380 hashParamTable[12].hash = 0x1356106d;
Diletant 183:c7a9c309086c 381 hashParamTable[12].ref = &device.plcs.reset.down.settings.environment.trigger[14];
Diletant 183:c7a9c309086c 382 hashParamTable[12].size = sizeof(device.plcs.reset.down.settings.environment.trigger[14]);
Diletant 183:c7a9c309086c 383 hashParamTable[13].hash = 0x13d3f0df;
Diletant 183:c7a9c309086c 384 hashParamTable[13].ref = &device.dither.noise.state.period;
Diletant 183:c7a9c309086c 385 hashParamTable[13].size = sizeof(device.dither.noise.state.period);
Diletant 183:c7a9c309086c 386 hashParamTable[14].hash = 0x14092a5e;
Diletant 183:c7a9c309086c 387 hashParamTable[14].ref = &device.plcs.reset.up.settings.environment.trigger[6];
Diletant 183:c7a9c309086c 388 hashParamTable[14].size = sizeof(device.plcs.reset.up.settings.environment.trigger[6]);
Diletant 183:c7a9c309086c 389 hashParamTable[15].hash = 0x142a336b;
Diletant 183:c7a9c309086c 390 hashParamTable[15].ref = &device.isacs.input.settings.transfer.V[7];
Diletant 183:c7a9c309086c 391 hashParamTable[15].size = sizeof(device.isacs.input.settings.transfer.V[7]);
Diletant 183:c7a9c309086c 392 hashParamTable[16].hash = 0x1433bae6;
Diletant 183:c7a9c309086c 393 hashParamTable[16].ref = &device.counters.meander.state.angle[0];
Diletant 183:c7a9c309086c 394 hashParamTable[16].size = sizeof(device.counters.meander.state.angle[0]);
Diletant 183:c7a9c309086c 395 hashParamTable[17].hash = 0x14b109a0;
Diletant 183:c7a9c309086c 396 hashParamTable[17].ref = &device.plcs.reset.down.settings.environment.trigger[5];
Diletant 183:c7a9c309086c 397 hashParamTable[17].size = sizeof(device.plcs.reset.down.settings.environment.trigger[5]);
Diletant 183:c7a9c309086c 398 hashParamTable[18].hash = 0x14ca9b91;
Diletant 183:c7a9c309086c 399 hashParamTable[18].ref = &device.controller.uart[0].state.LCR;
Diletant 183:c7a9c309086c 400 hashParamTable[18].size = sizeof(device.controller.uart[0].state.LCR);
Diletant 183:c7a9c309086c 401 hashParamTable[19].hash = 0x14d5dbbc;
Diletant 183:c7a9c309086c 402 hashParamTable[19].ref = &device.dither.detector.settings.filter.factor[6];
Diletant 183:c7a9c309086c 403 hashParamTable[19].size = sizeof(device.dither.detector.settings.filter.factor[6]);
Diletant 183:c7a9c309086c 404 hashParamTable[20].hash = 0x14e02957;
Diletant 183:c7a9c309086c 405 hashParamTable[20].ref = &device.counters.dither.state.delta[13];
Diletant 183:c7a9c309086c 406 hashParamTable[20].size = sizeof(device.counters.dither.state.delta[13]);
Diletant 183:c7a9c309086c 407 hashParamTable[21].hash = 0x14f73474;
Diletant 183:c7a9c309086c 408 hashParamTable[21].ref = &device.ccs.current[0].settings.transfer.mA[9];
Diletant 183:c7a9c309086c 409 hashParamTable[21].size = sizeof(device.ccs.current[0].settings.transfer.mA[9]);
Diletant 183:c7a9c309086c 410 hashParamTable[22].hash = 0x15e391e5;
Diletant 183:c7a9c309086c 411 hashParamTable[22].ref = &device.dither.amplitude.settings.transfer.error[1];
Diletant 183:c7a9c309086c 412 hashParamTable[22].size = sizeof(device.dither.amplitude.settings.transfer.error[1]);
Diletant 183:c7a9c309086c 413 hashParamTable[23].hash = 0x162f9f2b;
Diletant 183:c7a9c309086c 414 hashParamTable[23].ref = &device.plcs.output.settings.transfer.code[0];
Diletant 183:c7a9c309086c 415 hashParamTable[23].size = sizeof(device.plcs.output.settings.transfer.code[0]);
Diletant 183:c7a9c309086c 416 hashParamTable[24].hash = 0x166063b7;
Diletant 183:c7a9c309086c 417 hashParamTable[24].ref = &device.plcs.regulator.settings.transfer.correction[7];
Diletant 183:c7a9c309086c 418 hashParamTable[24].size = sizeof(device.plcs.regulator.settings.transfer.correction[7]);
Diletant 183:c7a9c309086c 419 hashParamTable[25].hash = 0x16a6970e;
Diletant 183:c7a9c309086c 420 hashParamTable[25].ref = &device.counters.dither.state.delta[23];
Diletant 183:c7a9c309086c 421 hashParamTable[25].size = sizeof(device.counters.dither.state.delta[23]);
Diletant 183:c7a9c309086c 422 hashParamTable[26].hash = 0x16d42bd;
Diletant 183:c7a9c309086c 423 hashParamTable[26].ref = &device.isacs.output.settings.transfer.voltage[11];
Diletant 183:c7a9c309086c 424 hashParamTable[26].size = sizeof(device.isacs.output.settings.transfer.voltage[11]);
Diletant 183:c7a9c309086c 425 hashParamTable[27].hash = 0x16ed2d61;
Diletant 183:c7a9c309086c 426 hashParamTable[27].ref = &device.dither.frequency.settings.transfer.correction[11];
Diletant 183:c7a9c309086c 427 hashParamTable[27].size = sizeof(device.dither.frequency.settings.transfer.correction[11]);
Diletant 183:c7a9c309086c 428 hashParamTable[28].hash = 0x177a9e0f;
Diletant 183:c7a9c309086c 429 hashParamTable[28].ref = &device.sequencer.output.analog.settings.transfer.code[8];
Diletant 183:c7a9c309086c 430 hashParamTable[28].size = sizeof(device.sequencer.output.analog.settings.transfer.code[8]);
Diletant 183:c7a9c309086c 431 hashParamTable[29].hash = 0x17bcf2b9;
Diletant 183:c7a9c309086c 432 hashParamTable[29].ref = &device.controller.SSP.in[4];
Diletant 183:c7a9c309086c 433 hashParamTable[29].size = sizeof(device.controller.SSP.in[4]);
Diletant 183:c7a9c309086c 434 hashParamTable[30].hash = 0x17e39986;
Diletant 183:c7a9c309086c 435 hashParamTable[30].ref = &device.counters.zero.state.a;
Diletant 183:c7a9c309086c 436 hashParamTable[30].size = sizeof(device.counters.zero.state.a);
Diletant 183:c7a9c309086c 437 hashParamTable[31].hash = 0x1830d5e9;
Diletant 183:c7a9c309086c 438 hashParamTable[31].ref = &device.plcs.reset.up.settings.environment.target[0];
Diletant 183:c7a9c309086c 439 hashParamTable[31].size = sizeof(device.plcs.reset.up.settings.environment.target[0]);
Diletant 183:c7a9c309086c 440 hashParamTable[32].hash = 0x183f50e6;
Diletant 183:c7a9c309086c 441 hashParamTable[32].ref = &device.plcs.reference.settings.sequencer;
Diletant 183:c7a9c309086c 442 hashParamTable[32].size = sizeof(device.plcs.reference.settings.sequencer);
Diletant 183:c7a9c309086c 443 hashParamTable[33].hash = 0x185d59f;
Diletant 183:c7a9c309086c 444 hashParamTable[33].ref = &device.isacs.regulator.settings.transfer.error[4];
Diletant 183:c7a9c309086c 445 hashParamTable[33].size = sizeof(device.isacs.regulator.settings.transfer.error[4]);
Diletant 183:c7a9c309086c 446 hashParamTable[34].hash = 0x187673fc;
Diletant 183:c7a9c309086c 447 hashParamTable[34].ref = &device.isacs.output.settings.transfer.voltage[10];
Diletant 183:c7a9c309086c 448 hashParamTable[34].size = sizeof(device.isacs.output.settings.transfer.voltage[10]);
Diletant 183:c7a9c309086c 449 hashParamTable[35].hash = 0x189ee4de;
Diletant 183:c7a9c309086c 450 hashParamTable[35].ref = &device.isacs.regulator.settings.transfer.error[5];
Diletant 183:c7a9c309086c 451 hashParamTable[35].size = sizeof(device.isacs.regulator.settings.transfer.error[5]);
Diletant 183:c7a9c309086c 452 hashParamTable[36].hash = 0x18c9d3e9;
Diletant 183:c7a9c309086c 453 hashParamTable[36].ref = &device.controller.I2C.state.trigger;
Diletant 183:c7a9c309086c 454 hashParamTable[36].size = sizeof(device.controller.I2C.state.trigger);
Diletant 183:c7a9c309086c 455 hashParamTable[37].hash = 0x18fd0ab4;
Diletant 183:c7a9c309086c 456 hashParamTable[37].ref = &device.plcs.feedback.settings.transfer.raw[0];
Diletant 183:c7a9c309086c 457 hashParamTable[37].size = sizeof(device.plcs.feedback.settings.transfer.raw[0]);
Diletant 183:c7a9c309086c 458 hashParamTable[38].hash = 0x18ff0dee;
Diletant 183:c7a9c309086c 459 hashParamTable[38].ref = &device.plcs.bias.settings.transfer.raw[0];
Diletant 183:c7a9c309086c 460 hashParamTable[38].size = sizeof(device.plcs.bias.settings.transfer.raw[0]);
Diletant 183:c7a9c309086c 461 hashParamTable[39].hash = 0x195b9d0a;
Diletant 183:c7a9c309086c 462 hashParamTable[39].ref = &device.dither.amplitude.state.enabled;
Diletant 183:c7a9c309086c 463 hashParamTable[39].size = sizeof(device.dither.amplitude.state.enabled);
Diletant 183:c7a9c309086c 464 hashParamTable[40].hash = 0x195d1e47;
Diletant 183:c7a9c309086c 465 hashParamTable[40].ref = &device.controller.uart[0].state.FCR;
Diletant 183:c7a9c309086c 466 hashParamTable[40].size = sizeof(device.controller.uart[0].state.FCR);
Diletant 183:c7a9c309086c 467 hashParamTable[41].hash = 0x19a3142e;
Diletant 183:c7a9c309086c 468 hashParamTable[41].ref = &device.dither.detector.settings.transfer.raw[3];
Diletant 183:c7a9c309086c 469 hashParamTable[41].size = sizeof(device.dither.detector.settings.transfer.raw[3]);
Diletant 183:c7a9c309086c 470 hashParamTable[42].hash = 0x1a3e671e;
Diletant 183:c7a9c309086c 471 hashParamTable[42].ref = &device.dither.noise.state.counter;
Diletant 183:c7a9c309086c 472 hashParamTable[42].size = sizeof(device.dither.noise.state.counter);
Diletant 183:c7a9c309086c 473 hashParamTable[43].hash = 0x1a91aa6e;
Diletant 183:c7a9c309086c 474 hashParamTable[43].ref = &device.plcs.reset.up.settings.environment.target[14];
Diletant 183:c7a9c309086c 475 hashParamTable[43].size = sizeof(device.plcs.reset.up.settings.environment.target[14]);
Diletant 183:c7a9c309086c 476 hashParamTable[44].hash = 0x1ad3d89e;
Diletant 183:c7a9c309086c 477 hashParamTable[44].ref = &device.dither.detector.settings.transfer.points;
Diletant 183:c7a9c309086c 478 hashParamTable[44].size = sizeof(device.dither.detector.settings.transfer.points);
Diletant 183:c7a9c309086c 479 hashParamTable[45].hash = 0x1b179781;
Diletant 183:c7a9c309086c 480 hashParamTable[45].ref = &device.isacs.output.settings.transfer.voltage[0];
Diletant 183:c7a9c309086c 481 hashParamTable[45].size = sizeof(device.isacs.output.settings.transfer.voltage[0]);
Diletant 183:c7a9c309086c 482 hashParamTable[46].hash = 0x1b1f5569;
Diletant 183:c7a9c309086c 483 hashParamTable[46].ref = &device.sequencer.sampler.state.position[1];
Diletant 183:c7a9c309086c 484 hashParamTable[46].size = sizeof(device.sequencer.sampler.state.position[1]);
Diletant 183:c7a9c309086c 485 hashParamTable[47].hash = 0x1b2739a8;
Diletant 183:c7a9c309086c 486 hashParamTable[47].ref = &device.dither.frequency.settings.transfer.error[12];
Diletant 183:c7a9c309086c 487 hashParamTable[47].size = sizeof(device.dither.frequency.settings.transfer.error[12]);
Diletant 183:c7a9c309086c 488 hashParamTable[48].hash = 0x1c0aa7e8;
Diletant 183:c7a9c309086c 489 hashParamTable[48].ref = &device.dither.detector.settings.filter.factor[15];
Diletant 183:c7a9c309086c 490 hashParamTable[48].size = sizeof(device.dither.detector.settings.filter.factor[15]);
Diletant 183:c7a9c309086c 491 hashParamTable[49].hash = 0x1c0e0ea7;
Diletant 183:c7a9c309086c 492 hashParamTable[49].ref = &device.tss.gradient.state.sum;
Diletant 183:c7a9c309086c 493 hashParamTable[49].size = sizeof(device.tss.gradient.state.sum);
Diletant 183:c7a9c309086c 494 hashParamTable[50].hash = 0x1c4e6380;
Diletant 183:c7a9c309086c 495 hashParamTable[50].ref = &device.plcs.output.settings.transfer.code[12];
Diletant 183:c7a9c309086c 496 hashParamTable[50].size = sizeof(device.plcs.output.settings.transfer.code[12]);
Diletant 183:c7a9c309086c 497 hashParamTable[51].hash = 0x1c69e16a;
Diletant 183:c7a9c309086c 498 hashParamTable[51].ref = &device.sequencer.output.analog.settings.transfer.code[10];
Diletant 183:c7a9c309086c 499 hashParamTable[51].size = sizeof(device.sequencer.output.analog.settings.transfer.code[10]);
Diletant 183:c7a9c309086c 500 hashParamTable[52].hash = 0x1d42170c;
Diletant 183:c7a9c309086c 501 hashParamTable[52].ref = &device.dither.frequency.settings.min;
Diletant 183:c7a9c309086c 502 hashParamTable[52].size = sizeof(device.dither.frequency.settings.min);
Diletant 183:c7a9c309086c 503 hashParamTable[53].hash = 0x1d4f6e8a;
Diletant 183:c7a9c309086c 504 hashParamTable[53].ref = &device.plcs.reset.up.settings.environment.trigger[12];
Diletant 183:c7a9c309086c 505 hashParamTable[53].size = sizeof(device.plcs.reset.up.settings.environment.trigger[12]);
Diletant 183:c7a9c309086c 506 hashParamTable[54].hash = 0x1d922ce1;
Diletant 183:c7a9c309086c 507 hashParamTable[54].ref = &device.sequencer.sampler.settings.enabled;
Diletant 183:c7a9c309086c 508 hashParamTable[54].size = sizeof(device.sequencer.sampler.settings.enabled);
Diletant 183:c7a9c309086c 509 hashParamTable[55].hash = 0x1da5514e;
Diletant 183:c7a9c309086c 510 hashParamTable[55].ref = &device.tss.gradient.settings.transfer.celsius[3];
Diletant 183:c7a9c309086c 511 hashParamTable[55].size = sizeof(device.tss.gradient.settings.transfer.celsius[3]);
Diletant 183:c7a9c309086c 512 hashParamTable[56].hash = 0x1dee6c5d;
Diletant 183:c7a9c309086c 513 hashParamTable[56].ref = &device.isacs.input.settings.transfer.raw[7];
Diletant 183:c7a9c309086c 514 hashParamTable[56].size = sizeof(device.isacs.input.settings.transfer.raw[7]);
Diletant 183:c7a9c309086c 515 hashParamTable[57].hash = 0x1e0c4982;
Diletant 183:c7a9c309086c 516 hashParamTable[57].ref = &device.ccs.current[0].settings.transfer.raw[5];
Diletant 183:c7a9c309086c 517 hashParamTable[57].size = sizeof(device.ccs.current[0].settings.transfer.raw[5]);
Diletant 183:c7a9c309086c 518 hashParamTable[58].hash = 0x1e281aa4;
Diletant 183:c7a9c309086c 519 hashParamTable[58].ref = &device.dither.frequency.state.frequency;
Diletant 183:c7a9c309086c 520 hashParamTable[58].size = sizeof(device.dither.frequency.state.frequency);
Diletant 183:c7a9c309086c 521 hashParamTable[59].hash = 0x1e43caf;
Diletant 183:c7a9c309086c 522 hashParamTable[59].ref = &device.plcs.bias.settings.transfer.raw[1];
Diletant 183:c7a9c309086c 523 hashParamTable[59].size = sizeof(device.plcs.bias.settings.transfer.raw[1]);
Diletant 183:c7a9c309086c 524 hashParamTable[60].hash = 0x1e4c19b1;
Diletant 183:c7a9c309086c 525 hashParamTable[60].ref = &device.dither.detector.settings.filter.factor[25];
Diletant 183:c7a9c309086c 526 hashParamTable[60].size = sizeof(device.dither.detector.settings.filter.factor[25]);
Diletant 183:c7a9c309086c 527 hashParamTable[61].hash = 0x1e4d2311;
Diletant 183:c7a9c309086c 528 hashParamTable[61].ref = &device.tss.temperature.settings.transfer.raw[0];
Diletant 183:c7a9c309086c 529 hashParamTable[61].size = sizeof(device.tss.temperature.settings.transfer.raw[0]);
Diletant 183:c7a9c309086c 530 hashParamTable[62].hash = 0x1e63bf5;
Diletant 183:c7a9c309086c 531 hashParamTable[62].ref = &device.plcs.feedback.settings.transfer.raw[1];
Diletant 183:c7a9c309086c 532 hashParamTable[62].size = sizeof(device.plcs.feedback.settings.transfer.raw[1]);
Diletant 183:c7a9c309086c 533 hashParamTable[63].hash = 0x1ea9caa2;
Diletant 183:c7a9c309086c 534 hashParamTable[63].ref = &device.plcs.reset.state.voltage;
Diletant 183:c7a9c309086c 535 hashParamTable[63].size = sizeof(device.plcs.reset.state.voltage);
Diletant 183:c7a9c309086c 536 hashParamTable[64].hash = 0x1eb95b78;
Diletant 183:c7a9c309086c 537 hashParamTable[64].ref = &device.controller.I2C.state.position;
Diletant 183:c7a9c309086c 538 hashParamTable[64].size = sizeof(device.controller.I2C.state.position);
Diletant 183:c7a9c309086c 539 hashParamTable[65].hash = 0x1f1130fd;
Diletant 183:c7a9c309086c 540 hashParamTable[65].ref = &device.plcs.regulator.settings.transfer.error[11];
Diletant 183:c7a9c309086c 541 hashParamTable[65].size = sizeof(device.plcs.regulator.settings.transfer.error[11]);
Diletant 183:c7a9c309086c 542 hashParamTable[66].hash = 0x1f21213f;
Diletant 183:c7a9c309086c 543 hashParamTable[66].ref = &device.tss.gradient.settings.transfer.celsius[13];
Diletant 183:c7a9c309086c 544 hashParamTable[66].size = sizeof(device.tss.gradient.settings.transfer.celsius[13]);
Diletant 183:c7a9c309086c 545 hashParamTable[67].hash = 0x1f6efd73;
Diletant 183:c7a9c309086c 546 hashParamTable[67].ref = &device.plcs.reset.up.settings.environment.temperature[1];
Diletant 183:c7a9c309086c 547 hashParamTable[67].size = sizeof(device.plcs.reset.up.settings.environment.temperature[1]);
Diletant 183:c7a9c309086c 548 hashParamTable[68].hash = 0x1f99ad84;
Diletant 183:c7a9c309086c 549 hashParamTable[68].ref = &device.sensor.settings.id;
Diletant 183:c7a9c309086c 550 hashParamTable[68].size = sizeof(device.sensor.settings.id);
Diletant 183:c7a9c309086c 551 hashParamTable[69].hash = 0x1fa53157;
Diletant 183:c7a9c309086c 552 hashParamTable[69].ref = &device.dither.amplitude.settings.transfer.correction[7];
Diletant 183:c7a9c309086c 553 hashParamTable[69].size = sizeof(device.dither.amplitude.settings.transfer.correction[7]);
Diletant 183:c7a9c309086c 554 hashParamTable[70].hash = 0x1fd038c3;
Diletant 183:c7a9c309086c 555 hashParamTable[70].ref = &device.controller.I2C.state.buffer[4];
Diletant 183:c7a9c309086c 556 hashParamTable[70].size = sizeof(device.controller.I2C.state.buffer[4]);
Diletant 183:c7a9c309086c 557 hashParamTable[71].hash = 0x20014b12;
Diletant 183:c7a9c309086c 558 hashParamTable[71].ref = &device.plcs.reset.down.settings.environment.target[1];
Diletant 183:c7a9c309086c 559 hashParamTable[71].size = sizeof(device.plcs.reset.down.settings.environment.target[1]);
Diletant 183:c7a9c309086c 560 hashParamTable[72].hash = 0x2005a050;
Diletant 183:c7a9c309086c 561 hashParamTable[72].ref = &device.dither.frequency.settings.scale;
Diletant 183:c7a9c309086c 562 hashParamTable[72].size = sizeof(device.dither.frequency.settings.scale);
Diletant 183:c7a9c309086c 563 hashParamTable[73].hash = 0x2046428;
Diletant 183:c7a9c309086c 564 hashParamTable[73].ref = &device.sequencer.sampler.state.position[0];
Diletant 183:c7a9c309086c 565 hashParamTable[73].size = sizeof(device.sequencer.sampler.state.position[0]);
Diletant 183:c7a9c309086c 566 hashParamTable[74].hash = 0x204e2ba9;
Diletant 183:c7a9c309086c 567 hashParamTable[74].ref = &device.plcs.regulator.settings.transfer.error[8];
Diletant 183:c7a9c309086c 568 hashParamTable[74].size = sizeof(device.plcs.regulator.settings.transfer.error[8]);
Diletant 183:c7a9c309086c 569 hashParamTable[75].hash = 0x2089da7e;
Diletant 183:c7a9c309086c 570 hashParamTable[75].ref = &device.plcs.bias.settings.transfer.normalized[9];
Diletant 183:c7a9c309086c 571 hashParamTable[75].size = sizeof(device.plcs.bias.settings.transfer.normalized[9]);
Diletant 183:c7a9c309086c 572 hashParamTable[76].hash = 0x209ea7fe;
Diletant 183:c7a9c309086c 573 hashParamTable[76].ref = &device.isacs.input.settings.transfer.V[15];
Diletant 183:c7a9c309086c 574 hashParamTable[76].size = sizeof(device.isacs.input.settings.transfer.V[15]);
Diletant 183:c7a9c309086c 575 hashParamTable[77].hash = 0x20ca6c0;
Diletant 183:c7a9c309086c 576 hashParamTable[77].ref = &device.isacs.output.settings.transfer.voltage[1];
Diletant 183:c7a9c309086c 577 hashParamTable[77].size = sizeof(device.isacs.output.settings.transfer.voltage[1]);
Diletant 183:c7a9c309086c 578 hashParamTable[78].hash = 0x20f3e78e;
Diletant 183:c7a9c309086c 579 hashParamTable[78].ref = &device.tss.gradient.settings.transfer.raw[9];
Diletant 183:c7a9c309086c 580 hashParamTable[78].size = sizeof(device.tss.gradient.settings.transfer.raw[9]);
Diletant 183:c7a9c309086c 581 hashParamTable[79].hash = 0x212c331a;
Diletant 183:c7a9c309086c 582 hashParamTable[79].ref = &device.dither.detector.settings.transfer.raw[15];
Diletant 183:c7a9c309086c 583 hashParamTable[79].size = sizeof(device.dither.detector.settings.transfer.raw[15]);
Diletant 183:c7a9c309086c 584 hashParamTable[80].hash = 0x214f2855;
Diletant 183:c7a9c309086c 585 hashParamTable[80].ref = &device.dither.frequency.settings.max;
Diletant 183:c7a9c309086c 586 hashParamTable[80].size = sizeof(device.dither.frequency.settings.max);
Diletant 183:c7a9c309086c 587 hashParamTable[81].hash = 0x218db848;
Diletant 183:c7a9c309086c 588 hashParamTable[81].ref = &device.plcs.reset.down.settings.environment.temperature[9];
Diletant 183:c7a9c309086c 589 hashParamTable[81].size = sizeof(device.plcs.reset.down.settings.environment.temperature[9]);
Diletant 183:c7a9c309086c 590 hashParamTable[82].hash = 0x21ad307b;
Diletant 183:c7a9c309086c 591 hashParamTable[82].ref = &device.dither.detector.settings.transfer.restored[15];
Diletant 183:c7a9c309086c 592 hashParamTable[82].size = sizeof(device.dither.detector.settings.transfer.restored[15]);
Diletant 183:c7a9c309086c 593 hashParamTable[83].hash = 0x221dec1a;
Diletant 183:c7a9c309086c 594 hashParamTable[83].ref = &device.dither.amplitude.state.correction;
Diletant 183:c7a9c309086c 595 hashParamTable[83].size = sizeof(device.dither.amplitude.state.correction);
Diletant 183:c7a9c309086c 596 hashParamTable[84].hash = 0x2297782a;
Diletant 183:c7a9c309086c 597 hashParamTable[84].ref = &device.dither.amplitude.settings.scale;
Diletant 183:c7a9c309086c 598 hashParamTable[84].size = sizeof(device.dither.amplitude.settings.scale);
Diletant 183:c7a9c309086c 599 hashParamTable[85].hash = 0x231dd694;
Diletant 183:c7a9c309086c 600 hashParamTable[85].ref = &device.plcs.feedback.settings.transfer.normalized[2];
Diletant 183:c7a9c309086c 601 hashParamTable[85].size = sizeof(device.plcs.feedback.settings.transfer.normalized[2]);
Diletant 183:c7a9c309086c 602 hashParamTable[86].hash = 0x238508f2;
Diletant 183:c7a9c309086c 603 hashParamTable[86].ref = &device.plcs.bias.settings.transfer.normalized[11];
Diletant 183:c7a9c309086c 604 hashParamTable[86].size = sizeof(device.plcs.bias.settings.transfer.normalized[11]);
Diletant 183:c7a9c309086c 605 hashParamTable[87].hash = 0x23955cae;
Diletant 183:c7a9c309086c 606 hashParamTable[87].ref = &device.isacs.regulator.settings.transfer.correction[3];
Diletant 183:c7a9c309086c 607 hashParamTable[87].size = sizeof(device.isacs.regulator.settings.transfer.correction[3]);
Diletant 183:c7a9c309086c 608 hashParamTable[88].hash = 0x23b95340;
Diletant 183:c7a9c309086c 609 hashParamTable[88].ref = &device.sequencer.output.analog.settings.transfer.voltage[9];
Diletant 183:c7a9c309086c 610 hashParamTable[88].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[9]);
Diletant 183:c7a9c309086c 611 hashParamTable[89].hash = 0x23c08e9;
Diletant 183:c7a9c309086c 612 hashParamTable[89].ref = &device.dither.frequency.settings.transfer.error[13];
Diletant 183:c7a9c309086c 613 hashParamTable[89].size = sizeof(device.dither.frequency.settings.transfer.error[13]);
Diletant 183:c7a9c309086c 614 hashParamTable[90].hash = 0x2419fda9;
Diletant 183:c7a9c309086c 615 hashParamTable[90].ref = &device.plcs.output.settings.transfer.code[2];
Diletant 183:c7a9c309086c 616 hashParamTable[90].size = sizeof(device.plcs.output.settings.transfer.code[2]);
Diletant 183:c7a9c309086c 617 hashParamTable[91].hash = 0x24560135;
Diletant 183:c7a9c309086c 618 hashParamTable[91].ref = &device.plcs.regulator.settings.transfer.correction[5];
Diletant 183:c7a9c309086c 619 hashParamTable[91].size = sizeof(device.plcs.regulator.settings.transfer.correction[5]);
Diletant 183:c7a9c309086c 620 hashParamTable[92].hash = 0x2481a096;
Diletant 183:c7a9c309086c 621 hashParamTable[92].ref = &device.isacs.regulator.settings.regular.scale;
Diletant 183:c7a9c309086c 622 hashParamTable[92].size = sizeof(device.isacs.regulator.settings.regular.scale);
Diletant 183:c7a9c309086c 623 hashParamTable[93].hash = 0x2490f58c;
Diletant 183:c7a9c309086c 624 hashParamTable[93].ref = &device.counters.dither.state.delta[21];
Diletant 183:c7a9c309086c 625 hashParamTable[93].size = sizeof(device.counters.dither.state.delta[21]);
Diletant 183:c7a9c309086c 626 hashParamTable[94].hash = 0x24db4fe3;
Diletant 183:c7a9c309086c 627 hashParamTable[94].ref = &device.dither.frequency.settings.transfer.correction[13];
Diletant 183:c7a9c309086c 628 hashParamTable[94].size = sizeof(device.dither.frequency.settings.transfer.correction[13]);
Diletant 183:c7a9c309086c 629 hashParamTable[95].hash = 0x25529fbb;
Diletant 183:c7a9c309086c 630 hashParamTable[95].ref = &device.counters.dither.state.delta[31];
Diletant 183:c7a9c309086c 631 hashParamTable[95].size = sizeof(device.counters.dither.state.delta[31]);
Diletant 183:c7a9c309086c 632 hashParamTable[96].hash = 0x25e7a824;
Diletant 183:c7a9c309086c 633 hashParamTable[96].ref = &device.plcs.reset.down.settings.environment.duration[9];
Diletant 183:c7a9c309086c 634 hashParamTable[96].size = sizeof(device.plcs.reset.down.settings.environment.duration[9]);
Diletant 183:c7a9c309086c 635 hashParamTable[97].hash = 0x261c51e9;
Diletant 183:c7a9c309086c 636 hashParamTable[97].ref = &device.isacs.input.settings.transfer.V[5];
Diletant 183:c7a9c309086c 637 hashParamTable[97].size = sizeof(device.isacs.input.settings.transfer.V[5]);
Diletant 183:c7a9c309086c 638 hashParamTable[98].hash = 0x263f48dc;
Diletant 183:c7a9c309086c 639 hashParamTable[98].ref = &device.plcs.reset.up.settings.environment.trigger[4];
Diletant 183:c7a9c309086c 640 hashParamTable[98].size = sizeof(device.plcs.reset.up.settings.environment.trigger[4]);
Diletant 183:c7a9c309086c 641 hashParamTable[99].hash = 0x267b13b1;
Diletant 183:c7a9c309086c 642 hashParamTable[99].ref = &device.dither.noise.settings.range;
Diletant 183:c7a9c309086c 643 hashParamTable[99].size = sizeof(device.dither.noise.settings.range);
Diletant 183:c7a9c309086c 644 hashParamTable[100].hash = 0x26876b22;
Diletant 183:c7a9c309086c 645 hashParamTable[100].ref = &device.plcs.reset.down.settings.environment.trigger[7];
Diletant 183:c7a9c309086c 646 hashParamTable[100].size = sizeof(device.plcs.reset.down.settings.environment.trigger[7]);
Diletant 183:c7a9c309086c 647 hashParamTable[101].hash = 0x26d64bd5;
Diletant 183:c7a9c309086c 648 hashParamTable[101].ref = &device.counters.dither.state.delta[11];
Diletant 183:c7a9c309086c 649 hashParamTable[101].size = sizeof(device.counters.dither.state.delta[11]);
Diletant 183:c7a9c309086c 650 hashParamTable[102].hash = 0x26e3b93e;
Diletant 183:c7a9c309086c 651 hashParamTable[102].ref = &device.dither.detector.settings.filter.factor[4];
Diletant 183:c7a9c309086c 652 hashParamTable[102].size = sizeof(device.dither.detector.settings.filter.factor[4]);
Diletant 183:c7a9c309086c 653 hashParamTable[103].hash = 0x27d5f367;
Diletant 183:c7a9c309086c 654 hashParamTable[103].ref = &device.dither.amplitude.settings.transfer.error[3];
Diletant 183:c7a9c309086c 655 hashParamTable[103].size = sizeof(device.dither.amplitude.settings.transfer.error[3]);
Diletant 183:c7a9c309086c 656 hashParamTable[104].hash = 0x27e577b1;
Diletant 183:c7a9c309086c 657 hashParamTable[104].ref = &device.dither.frequency.settings.enabled;
Diletant 183:c7a9c309086c 658 hashParamTable[104].size = sizeof(device.dither.frequency.settings.enabled);
Diletant 183:c7a9c309086c 659 hashParamTable[105].hash = 0x281feb12;
Diletant 183:c7a9c309086c 660 hashParamTable[105].ref = &device.plcs.reset.down.settings.environment.target[15];
Diletant 183:c7a9c309086c 661 hashParamTable[105].size = sizeof(device.plcs.reset.down.settings.environment.target[15]);
Diletant 183:c7a9c309086c 662 hashParamTable[106].hash = 0x2837dd6d;
Diletant 183:c7a9c309086c 663 hashParamTable[106].ref = &device.sequencer.sampler.settings.sequence[18];
Diletant 183:c7a9c309086c 664 hashParamTable[106].size = sizeof(device.sequencer.sampler.settings.sequence[18]);
Diletant 183:c7a9c309086c 665 hashParamTable[107].hash = 0x29115b2a;
Diletant 183:c7a9c309086c 666 hashParamTable[107].ref = &device.dither.frequency.settings.transfer.error[10];
Diletant 183:c7a9c309086c 667 hashParamTable[107].size = sizeof(device.dither.frequency.settings.transfer.error[10]);
Diletant 183:c7a9c309086c 668 hashParamTable[108].hash = 0x2921f503;
Diletant 183:c7a9c309086c 669 hashParamTable[108].ref = &device.isacs.output.settings.transfer.voltage[2];
Diletant 183:c7a9c309086c 670 hashParamTable[108].size = sizeof(device.isacs.output.settings.transfer.voltage[2]);
Diletant 183:c7a9c309086c 671 hashParamTable[109].hash = 0x2944ed54;
Diletant 183:c7a9c309086c 672 hashParamTable[109].ref = &device.sequencer.sampler.settings.sequence[8];
Diletant 183:c7a9c309086c 673 hashParamTable[109].size = sizeof(device.sequencer.sampler.settings.sequence[8]);
Diletant 183:c7a9c309086c 674 hashParamTable[110].hash = 0x296ccefa;
Diletant 183:c7a9c309086c 675 hashParamTable[110].ref = &device.plcs.feedback.settings.output;
Diletant 183:c7a9c309086c 676 hashParamTable[110].size = sizeof(device.plcs.feedback.settings.output);
Diletant 183:c7a9c309086c 677 hashParamTable[111].hash = 0x2a06b76b;
Diletant 183:c7a9c309086c 678 hashParamTable[111].ref = &device.plcs.reset.up.settings.environment.target[2];
Diletant 183:c7a9c309086c 679 hashParamTable[111].size = sizeof(device.plcs.reset.up.settings.environment.target[2]);
Diletant 183:c7a9c309086c 680 hashParamTable[112].hash = 0x2a1b86c5;
Diletant 183:c7a9c309086c 681 hashParamTable[112].ref = &device.dither.amplitude.settings.transfer.correction[15];
Diletant 183:c7a9c309086c 682 hashParamTable[112].size = sizeof(device.dither.amplitude.settings.transfer.correction[15]);
Diletant 183:c7a9c309086c 683 hashParamTable[113].hash = 0x2a40117e;
Diletant 183:c7a9c309086c 684 hashParamTable[113].ref = &device.isacs.output.settings.transfer.voltage[12];
Diletant 183:c7a9c309086c 685 hashParamTable[113].size = sizeof(device.isacs.output.settings.transfer.voltage[12]);
Diletant 183:c7a9c309086c 686 hashParamTable[114].hash = 0x2a716334;
Diletant 183:c7a9c309086c 687 hashParamTable[114].ref = &device.sequencer.sampler.settings.sequence[28];
Diletant 183:c7a9c309086c 688 hashParamTable[114].size = sizeof(device.sequencer.sampler.settings.sequence[28]);
Diletant 183:c7a9c309086c 689 hashParamTable[115].hash = 0x2aa8865c;
Diletant 183:c7a9c309086c 690 hashParamTable[115].ref = &device.isacs.regulator.settings.transfer.error[7];
Diletant 183:c7a9c309086c 691 hashParamTable[115].size = sizeof(device.isacs.regulator.settings.transfer.error[7]);
Diletant 183:c7a9c309086c 692 hashParamTable[116].hash = 0x2aaa9846;
Diletant 183:c7a9c309086c 693 hashParamTable[116].ref = &device.plcs.feedback.settings.transfer.raw[14];
Diletant 183:c7a9c309086c 694 hashParamTable[116].size = sizeof(device.plcs.feedback.settings.transfer.raw[14]);
Diletant 183:c7a9c309086c 695 hashParamTable[117].hash = 0x2ac96f6c;
Diletant 183:c7a9c309086c 696 hashParamTable[117].ref = &device.plcs.bias.settings.transfer.raw[2];
Diletant 183:c7a9c309086c 697 hashParamTable[117].size = sizeof(device.plcs.bias.settings.transfer.raw[2]);
Diletant 183:c7a9c309086c 698 hashParamTable[118].hash = 0x2acb6836;
Diletant 183:c7a9c309086c 699 hashParamTable[118].ref = &device.plcs.feedback.settings.transfer.raw[2];
Diletant 183:c7a9c309086c 700 hashParamTable[118].size = sizeof(device.plcs.feedback.settings.transfer.raw[2]);
Diletant 183:c7a9c309086c 701 hashParamTable[119].hash = 0x2aeb3625;
Diletant 183:c7a9c309086c 702 hashParamTable[119].ref = &device.isacs.output.settings.transfer.code[9];
Diletant 183:c7a9c309086c 703 hashParamTable[119].size = sizeof(device.isacs.output.settings.transfer.code[9]);
Diletant 183:c7a9c309086c 704 hashParamTable[120].hash = 0x2b8b20c3;
Diletant 183:c7a9c309086c 705 hashParamTable[120].ref = &device.counters.latch.state.clock;
Diletant 183:c7a9c309086c 706 hashParamTable[120].size = sizeof(device.counters.latch.state.clock);
Diletant 183:c7a9c309086c 707 hashParamTable[121].hash = 0x2b9576ac;
Diletant 183:c7a9c309086c 708 hashParamTable[121].ref = &device.dither.detector.settings.transfer.raw[1];
Diletant 183:c7a9c309086c 709 hashParamTable[121].size = sizeof(device.dither.detector.settings.transfer.raw[1]);
Diletant 183:c7a9c309086c 710 hashParamTable[122].hash = 0x2bb30903;
Diletant 183:c7a9c309086c 711 hashParamTable[122].ref = &device.sequencer.sampler.settings.sequence[38];
Diletant 183:c7a9c309086c 712 hashParamTable[122].size = sizeof(device.sequencer.sampler.settings.sequence[38]);
Diletant 183:c7a9c309086c 713 hashParamTable[123].hash = 0x2c3a2b00;
Diletant 183:c7a9c309086c 714 hashParamTable[123].ref = &device.ccs.current[0].settings.transfer.raw[7];
Diletant 183:c7a9c309086c 715 hashParamTable[123].size = sizeof(device.ccs.current[0].settings.transfer.raw[7]);
Diletant 183:c7a9c309086c 716 hashParamTable[124].hash = 0x2c7a7b33;
Diletant 183:c7a9c309086c 717 hashParamTable[124].ref = &device.dither.detector.settings.filter.factor[27];
Diletant 183:c7a9c309086c 718 hashParamTable[124].size = sizeof(device.dither.detector.settings.filter.factor[27]);
Diletant 183:c7a9c309086c 719 hashParamTable[125].hash = 0x2c7b4193;
Diletant 183:c7a9c309086c 720 hashParamTable[125].ref = &device.tss.temperature.settings.transfer.raw[2];
Diletant 183:c7a9c309086c 721 hashParamTable[125].size = sizeof(device.tss.temperature.settings.transfer.raw[2]);
Diletant 183:c7a9c309086c 722 hashParamTable[126].hash = 0x2d1743bd;
Diletant 183:c7a9c309086c 723 hashParamTable[126].ref = &device.tss.gradient.settings.transfer.celsius[11];
Diletant 183:c7a9c309086c 724 hashParamTable[126].size = sizeof(device.tss.gradient.settings.transfer.celsius[11]);
Diletant 183:c7a9c309086c 725 hashParamTable[127].hash = 0x2d27527f;
Diletant 183:c7a9c309086c 726 hashParamTable[127].ref = &device.plcs.regulator.settings.transfer.error[13];
Diletant 183:c7a9c309086c 727 hashParamTable[127].size = sizeof(device.plcs.regulator.settings.transfer.error[13]);
Diletant 183:c7a9c309086c 728 hashParamTable[128].hash = 0x2d2d0382;
Diletant 183:c7a9c309086c 729 hashParamTable[128].ref = &device.sequencer.output.logic.state.level;
Diletant 183:c7a9c309086c 730 hashParamTable[128].size = sizeof(device.sequencer.output.logic.state.level);
Diletant 183:c7a9c309086c 731 hashParamTable[129].hash = 0x2d589ff1;
Diletant 183:c7a9c309086c 732 hashParamTable[129].ref = &device.plcs.reset.up.settings.environment.temperature[3];
Diletant 183:c7a9c309086c 733 hashParamTable[129].size = sizeof(device.plcs.reset.up.settings.environment.temperature[3]);
Diletant 183:c7a9c309086c 734 hashParamTable[130].hash = 0x2d9353d5;
Diletant 183:c7a9c309086c 735 hashParamTable[130].ref = &device.dither.amplitude.settings.transfer.correction[5];
Diletant 183:c7a9c309086c 736 hashParamTable[130].size = sizeof(device.dither.amplitude.settings.transfer.correction[5]);
Diletant 183:c7a9c309086c 737 hashParamTable[131].hash = 0x2e3cc56a;
Diletant 183:c7a9c309086c 738 hashParamTable[131].ref = &device.dither.detector.settings.filter.factor[17];
Diletant 183:c7a9c309086c 739 hashParamTable[131].size = sizeof(device.dither.detector.settings.filter.factor[17]);
Diletant 183:c7a9c309086c 740 hashParamTable[132].hash = 0x2e5f83e8;
Diletant 183:c7a9c309086c 741 hashParamTable[132].ref = &device.sequencer.output.analog.settings.transfer.code[12];
Diletant 183:c7a9c309086c 742 hashParamTable[132].size = sizeof(device.sequencer.output.analog.settings.transfer.code[12]);
Diletant 183:c7a9c309086c 743 hashParamTable[133].hash = 0x2e780102;
Diletant 183:c7a9c309086c 744 hashParamTable[133].ref = &device.plcs.output.settings.transfer.code[10];
Diletant 183:c7a9c309086c 745 hashParamTable[133].size = sizeof(device.plcs.output.settings.transfer.code[10]);
Diletant 183:c7a9c309086c 746 hashParamTable[134].hash = 0x2e976286;
Diletant 183:c7a9c309086c 747 hashParamTable[134].ref = &device.plcs.output.settings.transfer.voltage[9];
Diletant 183:c7a9c309086c 748 hashParamTable[134].size = sizeof(device.plcs.output.settings.transfer.voltage[9]);
Diletant 183:c7a9c309086c 749 hashParamTable[135].hash = 0x2efc1f86;
Diletant 183:c7a9c309086c 750 hashParamTable[135].ref = &device.sequencer.sampler.settings.sequence[48];
Diletant 183:c7a9c309086c 751 hashParamTable[135].size = sizeof(device.sequencer.sampler.settings.sequence[48]);
Diletant 183:c7a9c309086c 752 hashParamTable[136].hash = 0x2f3e75b1;
Diletant 183:c7a9c309086c 753 hashParamTable[136].ref = &device.sequencer.sampler.settings.sequence[58];
Diletant 183:c7a9c309086c 754 hashParamTable[136].size = sizeof(device.sequencer.sampler.settings.sequence[58]);
Diletant 183:c7a9c309086c 755 hashParamTable[137].hash = 0x2f790c08;
Diletant 183:c7a9c309086c 756 hashParamTable[137].ref = &device.plcs.reset.up.settings.environment.trigger[10];
Diletant 183:c7a9c309086c 757 hashParamTable[137].size = sizeof(device.plcs.reset.up.settings.environment.trigger[10]);
Diletant 183:c7a9c309086c 758 hashParamTable[138].hash = 0x2f9333cc;
Diletant 183:c7a9c309086c 759 hashParamTable[138].ref = &device.tss.gradient.settings.transfer.celsius[1];
Diletant 183:c7a9c309086c 760 hashParamTable[138].size = sizeof(device.tss.gradient.settings.transfer.celsius[1]);
Diletant 183:c7a9c309086c 761 hashParamTable[139].hash = 0x2fd80edf;
Diletant 183:c7a9c309086c 762 hashParamTable[139].ref = &device.isacs.input.settings.transfer.raw[5];
Diletant 183:c7a9c309086c 763 hashParamTable[139].size = sizeof(device.isacs.input.settings.transfer.raw[5]);
Diletant 183:c7a9c309086c 764 hashParamTable[140].hash = 0x300a6a6b;
Diletant 183:c7a9c309086c 765 hashParamTable[140].ref = &device.dither.frequency.settings.transfer.error[11];
Diletant 183:c7a9c309086c 766 hashParamTable[140].size = sizeof(device.dither.frequency.settings.transfer.error[11]);
Diletant 183:c7a9c309086c 767 hashParamTable[141].hash = 0x303ac442;
Diletant 183:c7a9c309086c 768 hashParamTable[141].ref = &device.isacs.output.settings.transfer.voltage[3];
Diletant 183:c7a9c309086c 769 hashParamTable[141].size = sizeof(device.isacs.output.settings.transfer.voltage[3]);
Diletant 183:c7a9c309086c 770 hashParamTable[142].hash = 0x305fdc15;
Diletant 183:c7a9c309086c 771 hashParamTable[142].ref = &device.sequencer.sampler.settings.sequence[9];
Diletant 183:c7a9c309086c 772 hashParamTable[142].size = sizeof(device.sequencer.sampler.settings.sequence[9]);
Diletant 183:c7a9c309086c 773 hashParamTable[143].hash = 0x30a095c7;
Diletant 183:c7a9c309086c 774 hashParamTable[143].ref = &device.plcs.feedback.settings.transfer.points;
Diletant 183:c7a9c309086c 775 hashParamTable[143].size = sizeof(device.plcs.feedback.settings.transfer.points);
Diletant 183:c7a9c309086c 776 hashParamTable[144].hash = 0x30a2929d;
Diletant 183:c7a9c309086c 777 hashParamTable[144].ref = &device.plcs.bias.settings.transfer.points;
Diletant 183:c7a9c309086c 778 hashParamTable[144].size = sizeof(device.plcs.bias.settings.transfer.points);
Diletant 183:c7a9c309086c 779 hashParamTable[145].hash = 0x3104da53;
Diletant 183:c7a9c309086c 780 hashParamTable[145].ref = &device.plcs.reset.down.settings.environment.target[14];
Diletant 183:c7a9c309086c 781 hashParamTable[145].size = sizeof(device.plcs.reset.down.settings.environment.target[14]);
Diletant 183:c7a9c309086c 782 hashParamTable[146].hash = 0x312cec2c;
Diletant 183:c7a9c309086c 783 hashParamTable[146].ref = &device.sequencer.sampler.settings.sequence[19];
Diletant 183:c7a9c309086c 784 hashParamTable[146].size = sizeof(device.sequencer.sampler.settings.sequence[19]);
Diletant 183:c7a9c309086c 785 hashParamTable[147].hash = 0x323b0650;
Diletant 183:c7a9c309086c 786 hashParamTable[147].ref = &device.ccs.current[0].state.raw;
Diletant 183:c7a9c309086c 787 hashParamTable[147].size = sizeof(device.ccs.current[0].state.raw);
Diletant 183:c7a9c309086c 788 hashParamTable[148].hash = 0x324b61ef;
Diletant 183:c7a9c309086c 789 hashParamTable[148].ref = &device.tss.temperature.state.celsius;
Diletant 183:c7a9c309086c 790 hashParamTable[148].size = sizeof(device.tss.temperature.state.celsius);
Diletant 183:c7a9c309086c 791 hashParamTable[149].hash = 0x328e47ed;
Diletant 183:c7a9c309086c 792 hashParamTable[149].ref = &device.dither.detector.settings.transfer.raw[0];
Diletant 183:c7a9c309086c 793 hashParamTable[149].size = sizeof(device.dither.detector.settings.transfer.raw[0]);
Diletant 183:c7a9c309086c 794 hashParamTable[150].hash = 0x3292d5ec;
Diletant 183:c7a9c309086c 795 hashParamTable[150].ref = &device.dither.frequency.state.max;
Diletant 183:c7a9c309086c 796 hashParamTable[150].size = sizeof(device.dither.frequency.state.max);
Diletant 183:c7a9c309086c 797 hashParamTable[151].hash = 0x32a83842;
Diletant 183:c7a9c309086c 798 hashParamTable[151].ref = &device.sequencer.sampler.settings.sequence[39];
Diletant 183:c7a9c309086c 799 hashParamTable[151].size = sizeof(device.sequencer.sampler.settings.sequence[39]);
Diletant 183:c7a9c309086c 800 hashParamTable[152].hash = 0x3300b784;
Diletant 183:c7a9c309086c 801 hashParamTable[152].ref = &device.dither.amplitude.settings.transfer.correction[14];
Diletant 183:c7a9c309086c 802 hashParamTable[152].size = sizeof(device.dither.amplitude.settings.transfer.correction[14]);
Diletant 183:c7a9c309086c 803 hashParamTable[153].hash = 0x331d862a;
Diletant 183:c7a9c309086c 804 hashParamTable[153].ref = &device.plcs.reset.up.settings.environment.target[3];
Diletant 183:c7a9c309086c 805 hashParamTable[153].size = sizeof(device.plcs.reset.up.settings.environment.target[3]);
Diletant 183:c7a9c309086c 806 hashParamTable[154].hash = 0x335b203f;
Diletant 183:c7a9c309086c 807 hashParamTable[154].ref = &device.isacs.output.settings.transfer.voltage[13];
Diletant 183:c7a9c309086c 808 hashParamTable[154].size = sizeof(device.isacs.output.settings.transfer.voltage[13]);
Diletant 183:c7a9c309086c 809 hashParamTable[155].hash = 0x336a5275;
Diletant 183:c7a9c309086c 810 hashParamTable[155].ref = &device.sequencer.sampler.settings.sequence[29];
Diletant 183:c7a9c309086c 811 hashParamTable[155].size = sizeof(device.sequencer.sampler.settings.sequence[29]);
Diletant 183:c7a9c309086c 812 hashParamTable[156].hash = 0x33b1a907;
Diletant 183:c7a9c309086c 813 hashParamTable[156].ref = &device.plcs.feedback.settings.transfer.raw[15];
Diletant 183:c7a9c309086c 814 hashParamTable[156].size = sizeof(device.plcs.feedback.settings.transfer.raw[15]);
Diletant 183:c7a9c309086c 815 hashParamTable[157].hash = 0x33b3b71d;
Diletant 183:c7a9c309086c 816 hashParamTable[157].ref = &device.isacs.regulator.settings.transfer.error[6];
Diletant 183:c7a9c309086c 817 hashParamTable[157].size = sizeof(device.isacs.regulator.settings.transfer.error[6]);
Diletant 183:c7a9c309086c 818 hashParamTable[158].hash = 0x33d05977;
Diletant 183:c7a9c309086c 819 hashParamTable[158].ref = &device.plcs.feedback.settings.transfer.raw[3];
Diletant 183:c7a9c309086c 820 hashParamTable[158].size = sizeof(device.plcs.feedback.settings.transfer.raw[3]);
Diletant 183:c7a9c309086c 821 hashParamTable[159].hash = 0x33d25e2d;
Diletant 183:c7a9c309086c 822 hashParamTable[159].ref = &device.plcs.bias.settings.transfer.raw[3];
Diletant 183:c7a9c309086c 823 hashParamTable[159].size = sizeof(device.plcs.bias.settings.transfer.raw[3]);
Diletant 183:c7a9c309086c 824 hashParamTable[160].hash = 0x33f00764;
Diletant 183:c7a9c309086c 825 hashParamTable[160].ref = &device.isacs.output.settings.transfer.code[8];
Diletant 183:c7a9c309086c 826 hashParamTable[160].size = sizeof(device.isacs.output.settings.transfer.code[8]);
Diletant 183:c7a9c309086c 827 hashParamTable[161].hash = 0x340c72fc;
Diletant 183:c7a9c309086c 828 hashParamTable[161].ref = &device.tss.gradient.settings.transfer.celsius[10];
Diletant 183:c7a9c309086c 829 hashParamTable[161].size = sizeof(device.tss.gradient.settings.transfer.celsius[10]);
Diletant 183:c7a9c309086c 830 hashParamTable[162].hash = 0x343c633e;
Diletant 183:c7a9c309086c 831 hashParamTable[162].ref = &device.plcs.regulator.settings.transfer.error[12];
Diletant 183:c7a9c309086c 832 hashParamTable[162].size = sizeof(device.plcs.regulator.settings.transfer.error[12]);
Diletant 183:c7a9c309086c 833 hashParamTable[163].hash = 0x3443aeb0;
Diletant 183:c7a9c309086c 834 hashParamTable[163].ref = &device.plcs.reset.up.settings.environment.temperature[2];
Diletant 183:c7a9c309086c 835 hashParamTable[163].size = sizeof(device.plcs.reset.up.settings.environment.temperature[2]);
Diletant 183:c7a9c309086c 836 hashParamTable[164].hash = 0x34886294;
Diletant 183:c7a9c309086c 837 hashParamTable[164].ref = &device.dither.amplitude.settings.transfer.correction[4];
Diletant 183:c7a9c309086c 838 hashParamTable[164].size = sizeof(device.dither.amplitude.settings.transfer.correction[4]);
Diletant 183:c7a9c309086c 839 hashParamTable[165].hash = 0x35211a41;
Diletant 183:c7a9c309086c 840 hashParamTable[165].ref = &device.ccs.current[0].settings.transfer.raw[6];
Diletant 183:c7a9c309086c 841 hashParamTable[165].size = sizeof(device.ccs.current[0].settings.transfer.raw[6]);
Diletant 183:c7a9c309086c 842 hashParamTable[166].hash = 0x356070d2;
Diletant 183:c7a9c309086c 843 hashParamTable[166].ref = &device.tss.temperature.settings.transfer.raw[3];
Diletant 183:c7a9c309086c 844 hashParamTable[166].size = sizeof(device.tss.temperature.settings.transfer.raw[3]);
Diletant 183:c7a9c309086c 845 hashParamTable[167].hash = 0x35614a72;
Diletant 183:c7a9c309086c 846 hashParamTable[167].ref = &device.dither.detector.settings.filter.factor[26];
Diletant 183:c7a9c309086c 847 hashParamTable[167].size = sizeof(device.dither.detector.settings.filter.factor[26]);
Diletant 183:c7a9c309086c 848 hashParamTable[168].hash = 0x35bb1bb7;
Diletant 183:c7a9c309086c 849 hashParamTable[168].ref = &device.plcs.reset.up.state.target;
Diletant 183:c7a9c309086c 850 hashParamTable[168].size = sizeof(device.plcs.reset.up.state.target);
Diletant 183:c7a9c309086c 851 hashParamTable[169].hash = 0x35df3163;
Diletant 183:c7a9c309086c 852 hashParamTable[169].ref = &device.plcs.output.settings.transfer.points;
Diletant 183:c7a9c309086c 853 hashParamTable[169].size = sizeof(device.plcs.output.settings.transfer.points);
Diletant 183:c7a9c309086c 854 hashParamTable[170].hash = 0x3610bc62;
Diletant 183:c7a9c309086c 855 hashParamTable[170].ref = &device.tss.temperature.settings.transfer.points;
Diletant 183:c7a9c309086c 856 hashParamTable[170].size = sizeof(device.tss.temperature.settings.transfer.points);
Diletant 183:c7a9c309086c 857 hashParamTable[171].hash = 0x361a129e;
Diletant 183:c7a9c309086c 858 hashParamTable[171].ref = &device.isacs.output.settings.reset.voltage;
Diletant 183:c7a9c309086c 859 hashParamTable[171].size = sizeof(device.isacs.output.settings.reset.voltage);
Diletant 183:c7a9c309086c 860 hashParamTable[172].hash = 0x362544f0;
Diletant 183:c7a9c309086c 861 hashParamTable[172].ref = &device.sequencer.sampler.settings.sequence[59];
Diletant 183:c7a9c309086c 862 hashParamTable[172].size = sizeof(device.sequencer.sampler.settings.sequence[59]);
Diletant 183:c7a9c309086c 863 hashParamTable[173].hash = 0x36623d49;
Diletant 183:c7a9c309086c 864 hashParamTable[173].ref = &device.plcs.reset.up.settings.environment.trigger[11];
Diletant 183:c7a9c309086c 865 hashParamTable[173].size = sizeof(device.plcs.reset.up.settings.environment.trigger[11]);
Diletant 183:c7a9c309086c 866 hashParamTable[174].hash = 0x3688028d;
Diletant 183:c7a9c309086c 867 hashParamTable[174].ref = &device.tss.gradient.settings.transfer.celsius[0];
Diletant 183:c7a9c309086c 868 hashParamTable[174].size = sizeof(device.tss.gradient.settings.transfer.celsius[0]);
Diletant 183:c7a9c309086c 869 hashParamTable[175].hash = 0x36c33f9e;
Diletant 183:c7a9c309086c 870 hashParamTable[175].ref = &device.isacs.input.settings.transfer.raw[4];
Diletant 183:c7a9c309086c 871 hashParamTable[175].size = sizeof(device.isacs.input.settings.transfer.raw[4]);
Diletant 183:c7a9c309086c 872 hashParamTable[176].hash = 0x36ee331;
Diletant 183:c7a9c309086c 873 hashParamTable[176].ref = &device.isacs.regulator.state.enabled;
Diletant 183:c7a9c309086c 874 hashParamTable[176].size = sizeof(device.isacs.regulator.state.enabled);
Diletant 183:c7a9c309086c 875 hashParamTable[177].hash = 0x3727f42b;
Diletant 183:c7a9c309086c 876 hashParamTable[177].ref = &device.dither.detector.settings.filter.factor[16];
Diletant 183:c7a9c309086c 877 hashParamTable[177].size = sizeof(device.dither.detector.settings.filter.factor[16]);
Diletant 183:c7a9c309086c 878 hashParamTable[178].hash = 0x3744b2a9;
Diletant 183:c7a9c309086c 879 hashParamTable[178].ref = &device.sequencer.output.analog.settings.transfer.code[13];
Diletant 183:c7a9c309086c 880 hashParamTable[178].size = sizeof(device.sequencer.output.analog.settings.transfer.code[13]);
Diletant 183:c7a9c309086c 881 hashParamTable[179].hash = 0x3760b966;
Diletant 183:c7a9c309086c 882 hashParamTable[179].ref = &device.dither.pulse.state.width;
Diletant 183:c7a9c309086c 883 hashParamTable[179].size = sizeof(device.dither.pulse.state.width);
Diletant 183:c7a9c309086c 884 hashParamTable[180].hash = 0x37633043;
Diletant 183:c7a9c309086c 885 hashParamTable[180].ref = &device.plcs.output.settings.transfer.code[11];
Diletant 183:c7a9c309086c 886 hashParamTable[180].size = sizeof(device.plcs.output.settings.transfer.code[11]);
Diletant 183:c7a9c309086c 887 hashParamTable[181].hash = 0x378c53c7;
Diletant 183:c7a9c309086c 888 hashParamTable[181].ref = &device.plcs.output.settings.transfer.voltage[8];
Diletant 183:c7a9c309086c 889 hashParamTable[181].size = sizeof(device.plcs.output.settings.transfer.voltage[8]);
Diletant 183:c7a9c309086c 890 hashParamTable[182].hash = 0x37e72ec7;
Diletant 183:c7a9c309086c 891 hashParamTable[182].ref = &device.sequencer.sampler.settings.sequence[49];
Diletant 183:c7a9c309086c 892 hashParamTable[182].size = sizeof(device.sequencer.sampler.settings.sequence[49]);
Diletant 183:c7a9c309086c 893 hashParamTable[183].hash = 0x3837025b;
Diletant 183:c7a9c309086c 894 hashParamTable[183].ref = &device.dither.detector.settings.transfer.raw[14];
Diletant 183:c7a9c309086c 895 hashParamTable[183].size = sizeof(device.dither.detector.settings.transfer.raw[14]);
Diletant 183:c7a9c309086c 896 hashParamTable[184].hash = 0x3871bb0f;
Diletant 183:c7a9c309086c 897 hashParamTable[184].ref = &device.counters.latch.state.angle;
Diletant 183:c7a9c309086c 898 hashParamTable[184].size = sizeof(device.counters.latch.state.angle);
Diletant 183:c7a9c309086c 899 hashParamTable[185].hash = 0x38968909;
Diletant 183:c7a9c309086c 900 hashParamTable[185].ref = &device.plcs.reset.down.settings.environment.temperature[8];
Diletant 183:c7a9c309086c 901 hashParamTable[185].size = sizeof(device.plcs.reset.down.settings.environment.temperature[8]);
Diletant 183:c7a9c309086c 902 hashParamTable[186].hash = 0x38a9b2f;
Diletant 183:c7a9c309086c 903 hashParamTable[186].ref = &device.plcs.reset.up.settings.environment.target[15];
Diletant 183:c7a9c309086c 904 hashParamTable[186].size = sizeof(device.plcs.reset.up.settings.environment.target[15]);
Diletant 183:c7a9c309086c 905 hashParamTable[187].hash = 0x38b6013a;
Diletant 183:c7a9c309086c 906 hashParamTable[187].ref = &device.dither.detector.settings.transfer.restored[14];
Diletant 183:c7a9c309086c 907 hashParamTable[187].size = sizeof(device.dither.detector.settings.transfer.restored[14]);
Diletant 183:c7a9c309086c 908 hashParamTable[188].hash = 0x391a7a53;
Diletant 183:c7a9c309086c 909 hashParamTable[188].ref = &device.plcs.reset.down.settings.environment.target[0];
Diletant 183:c7a9c309086c 910 hashParamTable[188].size = sizeof(device.plcs.reset.down.settings.environment.target[0]);
Diletant 183:c7a9c309086c 911 hashParamTable[189].hash = 0x39551ae8;
Diletant 183:c7a9c309086c 912 hashParamTable[189].ref = &device.plcs.regulator.settings.transfer.error[9];
Diletant 183:c7a9c309086c 913 hashParamTable[189].size = sizeof(device.plcs.regulator.settings.transfer.error[9]);
Diletant 183:c7a9c309086c 914 hashParamTable[190].hash = 0x398596bf;
Diletant 183:c7a9c309086c 915 hashParamTable[190].ref = &device.isacs.input.settings.transfer.V[14];
Diletant 183:c7a9c309086c 916 hashParamTable[190].size = sizeof(device.isacs.input.settings.transfer.V[14]);
Diletant 183:c7a9c309086c 917 hashParamTable[191].hash = 0x3992eb3f;
Diletant 183:c7a9c309086c 918 hashParamTable[191].ref = &device.plcs.bias.settings.transfer.normalized[8];
Diletant 183:c7a9c309086c 919 hashParamTable[191].size = sizeof(device.plcs.bias.settings.transfer.normalized[8]);
Diletant 183:c7a9c309086c 920 hashParamTable[192].hash = 0x39e8d6cf;
Diletant 183:c7a9c309086c 921 hashParamTable[192].ref = &device.tss.gradient.settings.transfer.raw[8];
Diletant 183:c7a9c309086c 922 hashParamTable[192].size = sizeof(device.tss.gradient.settings.transfer.raw[8]);
Diletant 183:c7a9c309086c 923 hashParamTable[193].hash = 0x3a06e7d5;
Diletant 183:c7a9c309086c 924 hashParamTable[193].ref = &device.plcs.feedback.settings.transfer.normalized[3];
Diletant 183:c7a9c309086c 925 hashParamTable[193].size = sizeof(device.plcs.feedback.settings.transfer.normalized[3]);
Diletant 183:c7a9c309086c 926 hashParamTable[194].hash = 0x3a3ecdeb;
Diletant 183:c7a9c309086c 927 hashParamTable[194].ref = &device.dither.pulse.state.min;
Diletant 183:c7a9c309086c 928 hashParamTable[194].size = sizeof(device.dither.pulse.state.min);
Diletant 183:c7a9c309086c 929 hashParamTable[195].hash = 0x3a8e6def;
Diletant 183:c7a9c309086c 930 hashParamTable[195].ref = &device.isacs.regulator.settings.transfer.correction[2];
Diletant 183:c7a9c309086c 931 hashParamTable[195].size = sizeof(device.isacs.regulator.settings.transfer.correction[2]);
Diletant 183:c7a9c309086c 932 hashParamTable[196].hash = 0x3a9e39b3;
Diletant 183:c7a9c309086c 933 hashParamTable[196].ref = &device.plcs.bias.settings.transfer.normalized[10];
Diletant 183:c7a9c309086c 934 hashParamTable[196].size = sizeof(device.plcs.bias.settings.transfer.normalized[10]);
Diletant 183:c7a9c309086c 935 hashParamTable[197].hash = 0x3aa26201;
Diletant 183:c7a9c309086c 936 hashParamTable[197].ref = &device.sequencer.output.analog.settings.transfer.voltage[8];
Diletant 183:c7a9c309086c 937 hashParamTable[197].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[8]);
Diletant 183:c7a9c309086c 938 hashParamTable[198].hash = 0x3ad87ebd;
Diletant 183:c7a9c309086c 939 hashParamTable[198].ref = &device.dither.amplitude.state.reference;
Diletant 183:c7a9c309086c 940 hashParamTable[198].size = sizeof(device.dither.amplitude.state.reference);
Diletant 183:c7a9c309086c 941 hashParamTable[199].hash = 0x3b012deb;
Diletant 183:c7a9c309086c 942 hashParamTable[199].ref = &device.dither.pulse.settings.max;
Diletant 183:c7a9c309086c 943 hashParamTable[199].size = sizeof(device.dither.pulse.settings.max);
Diletant 183:c7a9c309086c 944 hashParamTable[200].hash = 0x3c49aefa;
Diletant 183:c7a9c309086c 945 hashParamTable[200].ref = &device.counters.dither.state.delta[30];
Diletant 183:c7a9c309086c 946 hashParamTable[200].size = sizeof(device.counters.dither.state.delta[30]);
Diletant 183:c7a9c309086c 947 hashParamTable[201].hash = 0x3cc046e7;
Diletant 183:c7a9c309086c 948 hashParamTable[201].ref = &device.plcs.reset.up.settings.environment.points;
Diletant 183:c7a9c309086c 949 hashParamTable[201].size = sizeof(device.plcs.reset.up.settings.environment.points);
Diletant 183:c7a9c309086c 950 hashParamTable[202].hash = 0x3cfc9965;
Diletant 183:c7a9c309086c 951 hashParamTable[202].ref = &device.plcs.reset.down.settings.environment.duration[8];
Diletant 183:c7a9c309086c 952 hashParamTable[202].size = sizeof(device.plcs.reset.down.settings.environment.duration[8]);
Diletant 183:c7a9c309086c 953 hashParamTable[203].hash = 0x3d02cce8;
Diletant 183:c7a9c309086c 954 hashParamTable[203].ref = &device.plcs.output.settings.transfer.code[3];
Diletant 183:c7a9c309086c 955 hashParamTable[203].size = sizeof(device.plcs.output.settings.transfer.code[3]);
Diletant 183:c7a9c309086c 956 hashParamTable[204].hash = 0x3d4d3074;
Diletant 183:c7a9c309086c 957 hashParamTable[204].ref = &device.plcs.regulator.settings.transfer.correction[4];
Diletant 183:c7a9c309086c 958 hashParamTable[204].size = sizeof(device.plcs.regulator.settings.transfer.correction[4]);
Diletant 183:c7a9c309086c 959 hashParamTable[205].hash = 0x3d58b0a8;
Diletant 183:c7a9c309086c 960 hashParamTable[205].ref = &device.isacs.regulator.settings.regular.enabled;
Diletant 183:c7a9c309086c 961 hashParamTable[205].size = sizeof(device.isacs.regulator.settings.regular.enabled);
Diletant 183:c7a9c309086c 962 hashParamTable[206].hash = 0x3d8bc4cd;
Diletant 183:c7a9c309086c 963 hashParamTable[206].ref = &device.counters.dither.state.delta[20];
Diletant 183:c7a9c309086c 964 hashParamTable[206].size = sizeof(device.counters.dither.state.delta[20]);
Diletant 183:c7a9c309086c 965 hashParamTable[207].hash = 0x3dc07ea2;
Diletant 183:c7a9c309086c 966 hashParamTable[207].ref = &device.dither.frequency.settings.transfer.correction[12];
Diletant 183:c7a9c309086c 967 hashParamTable[207].size = sizeof(device.dither.frequency.settings.transfer.correction[12]);
Diletant 183:c7a9c309086c 968 hashParamTable[208].hash = 0x3ecec226;
Diletant 183:c7a9c309086c 969 hashParamTable[208].ref = &device.dither.amplitude.settings.transfer.error[2];
Diletant 183:c7a9c309086c 970 hashParamTable[208].size = sizeof(device.dither.amplitude.settings.transfer.error[2]);
Diletant 183:c7a9c309086c 971 hashParamTable[209].hash = 0x3f0760a8;
Diletant 183:c7a9c309086c 972 hashParamTable[209].ref = &device.isacs.input.settings.transfer.V[4];
Diletant 183:c7a9c309086c 973 hashParamTable[209].size = sizeof(device.isacs.input.settings.transfer.V[4]);
Diletant 183:c7a9c309086c 974 hashParamTable[210].hash = 0x3f24799d;
Diletant 183:c7a9c309086c 975 hashParamTable[210].ref = &device.plcs.reset.up.settings.environment.trigger[5];
Diletant 183:c7a9c309086c 976 hashParamTable[210].size = sizeof(device.plcs.reset.up.settings.environment.trigger[5]);
Diletant 183:c7a9c309086c 977 hashParamTable[211].hash = 0x3f9c5a63;
Diletant 183:c7a9c309086c 978 hashParamTable[211].ref = &device.plcs.reset.down.settings.environment.trigger[6];
Diletant 183:c7a9c309086c 979 hashParamTable[211].size = sizeof(device.plcs.reset.down.settings.environment.trigger[6]);
Diletant 183:c7a9c309086c 980 hashParamTable[212].hash = 0x3fcd7a94;
Diletant 183:c7a9c309086c 981 hashParamTable[212].ref = &device.counters.dither.state.delta[10];
Diletant 183:c7a9c309086c 982 hashParamTable[212].size = sizeof(device.counters.dither.state.delta[10]);
Diletant 183:c7a9c309086c 983 hashParamTable[213].hash = 0x3ff8887f;
Diletant 183:c7a9c309086c 984 hashParamTable[213].ref = &device.dither.detector.settings.filter.factor[5];
Diletant 183:c7a9c309086c 985 hashParamTable[213].size = sizeof(device.dither.detector.settings.filter.factor[5]);
Diletant 183:c7a9c309086c 986 hashParamTable[214].hash = 0x401d1b93;
Diletant 183:c7a9c309086c 987 hashParamTable[214].ref = &device.plcs.feedback.settings.input;
Diletant 183:c7a9c309086c 988 hashParamTable[214].size = sizeof(device.plcs.feedback.settings.input);
Diletant 183:c7a9c309086c 989 hashParamTable[215].hash = 0x403ac431;
Diletant 183:c7a9c309086c 990 hashParamTable[215].ref = &device.plcs.regulator.settings.transfer.correction[1];
Diletant 183:c7a9c309086c 991 hashParamTable[215].size = sizeof(device.plcs.regulator.settings.transfer.correction[1]);
Diletant 183:c7a9c309086c 992 hashParamTable[216].hash = 0x407538ad;
Diletant 183:c7a9c309086c 993 hashParamTable[216].ref = &device.plcs.output.settings.transfer.code[6];
Diletant 183:c7a9c309086c 994 hashParamTable[216].size = sizeof(device.plcs.output.settings.transfer.code[6]);
Diletant 183:c7a9c309086c 995 hashParamTable[217].hash = 0x40fc3088;
Diletant 183:c7a9c309086c 996 hashParamTable[217].ref = &device.counters.dither.state.delta[25];
Diletant 183:c7a9c309086c 997 hashParamTable[217].size = sizeof(device.counters.dither.state.delta[25]);
Diletant 183:c7a9c309086c 998 hashParamTable[218].hash = 0x412613ac;
Diletant 183:c7a9c309086c 999 hashParamTable[218].ref = &device.plcs.regulator.state.reference;
Diletant 183:c7a9c309086c 1000 hashParamTable[218].size = sizeof(device.plcs.regulator.state.reference);
Diletant 183:c7a9c309086c 1001 hashParamTable[219].hash = 0x41cdcbe5;
Diletant 183:c7a9c309086c 1002 hashParamTable[219].ref = &device.plcs.output.settings.enabled;
Diletant 183:c7a9c309086c 1003 hashParamTable[219].size = sizeof(device.plcs.output.settings.enabled);
Diletant 183:c7a9c309086c 1004 hashParamTable[220].hash = 0x41e6553f;
Diletant 183:c7a9c309086c 1005 hashParamTable[220].ref = &device.controller.SSP.in[2];
Diletant 183:c7a9c309086c 1006 hashParamTable[220].size = sizeof(device.controller.SSP.in[2]);
Diletant 183:c7a9c309086c 1007 hashParamTable[221].hash = 0x42538dd8;
Diletant 183:c7a9c309086c 1008 hashParamTable[221].ref = &device.plcs.reset.up.settings.environment.trigger[0];
Diletant 183:c7a9c309086c 1009 hashParamTable[221].size = sizeof(device.plcs.reset.up.settings.environment.trigger[0]);
Diletant 183:c7a9c309086c 1010 hashParamTable[222].hash = 0x427094ed;
Diletant 183:c7a9c309086c 1011 hashParamTable[222].ref = &device.isacs.input.settings.transfer.V[1];
Diletant 183:c7a9c309086c 1012 hashParamTable[222].size = sizeof(device.isacs.input.settings.transfer.V[1]);
Diletant 183:c7a9c309086c 1013 hashParamTable[223].hash = 0x428f7c3a;
Diletant 183:c7a9c309086c 1014 hashParamTable[223].ref = &device.dither.detector.settings.filter.factor[0];
Diletant 183:c7a9c309086c 1015 hashParamTable[223].size = sizeof(device.dither.detector.settings.filter.factor[0]);
Diletant 183:c7a9c309086c 1016 hashParamTable[224].hash = 0x42ba8ed1;
Diletant 183:c7a9c309086c 1017 hashParamTable[224].ref = &device.counters.dither.state.delta[15];
Diletant 183:c7a9c309086c 1018 hashParamTable[224].size = sizeof(device.counters.dither.state.delta[15]);
Diletant 183:c7a9c309086c 1019 hashParamTable[225].hash = 0x42ebae26;
Diletant 183:c7a9c309086c 1020 hashParamTable[225].ref = &device.plcs.reset.down.settings.environment.trigger[3];
Diletant 183:c7a9c309086c 1021 hashParamTable[225].size = sizeof(device.plcs.reset.down.settings.environment.trigger[3]);
Diletant 183:c7a9c309086c 1022 hashParamTable[226].hash = 0x435238e3;
Diletant 183:c7a9c309086c 1023 hashParamTable[226].ref = &device.plcs.detector.state.out;
Diletant 183:c7a9c309086c 1024 hashParamTable[226].size = sizeof(device.plcs.detector.state.out);
Diletant 183:c7a9c309086c 1025 hashParamTable[227].hash = 0x43b93663;
Diletant 183:c7a9c309086c 1026 hashParamTable[227].ref = &device.dither.amplitude.settings.transfer.error[7];
Diletant 183:c7a9c309086c 1027 hashParamTable[227].size = sizeof(device.dither.amplitude.settings.transfer.error[7]);
Diletant 183:c7a9c309086c 1028 hashParamTable[228].hash = 0x44212bba;
Diletant 183:c7a9c309086c 1029 hashParamTable[228].ref = &device.plcs.feedback.settings.transfer.normalized[12];
Diletant 183:c7a9c309086c 1030 hashParamTable[228].size = sizeof(device.plcs.feedback.settings.transfer.normalized[12]);
Diletant 183:c7a9c309086c 1031 hashParamTable[229].hash = 0x4435fa83;
Diletant 183:c7a9c309086c 1032 hashParamTable[229].ref = &device.service.port.state.baud;
Diletant 183:c7a9c309086c 1033 hashParamTable[229].size = sizeof(device.service.port.state.baud);
Diletant 183:c7a9c309086c 1034 hashParamTable[230].hash = 0x446d8e16;
Diletant 183:c7a9c309086c 1035 hashParamTable[230].ref = &device.plcs.reset.down.settings.environment.target[5];
Diletant 183:c7a9c309086c 1036 hashParamTable[230].size = sizeof(device.plcs.reset.down.settings.environment.target[5]);
Diletant 183:c7a9c309086c 1037 hashParamTable[231].hash = 0x44b2f8b0;
Diletant 183:c7a9c309086c 1038 hashParamTable[231].ref = &device.dither.amplitude.settings.transfer.error[12];
Diletant 183:c7a9c309086c 1039 hashParamTable[231].size = sizeof(device.dither.amplitude.settings.transfer.error[12]);
Diletant 183:c7a9c309086c 1040 hashParamTable[232].hash = 0x44cf72ec;
Diletant 183:c7a9c309086c 1041 hashParamTable[232].ref = &device.plcs.reset.up.settings.environment.temperature[13];
Diletant 183:c7a9c309086c 1042 hashParamTable[232].size = sizeof(device.plcs.reset.up.settings.environment.temperature[13]);
Diletant 183:c7a9c309086c 1043 hashParamTable[233].hash = 0x44f262fa;
Diletant 183:c7a9c309086c 1044 hashParamTable[233].ref = &device.isacs.input.settings.transfer.V[11];
Diletant 183:c7a9c309086c 1045 hashParamTable[233].size = sizeof(device.isacs.input.settings.transfer.V[11]);
Diletant 183:c7a9c309086c 1046 hashParamTable[234].hash = 0x450cb7eb;
Diletant 183:c7a9c309086c 1047 hashParamTable[234].ref = &device.plcs.reset.down.settings.environment.trigger[12];
Diletant 183:c7a9c309086c 1048 hashParamTable[234].size = sizeof(device.plcs.reset.down.settings.environment.trigger[12]);
Diletant 183:c7a9c309086c 1049 hashParamTable[235].hash = 0x4540f61e;
Diletant 183:c7a9c309086c 1050 hashParamTable[235].ref = &device.dither.detector.settings.transfer.raw[11];
Diletant 183:c7a9c309086c 1051 hashParamTable[235].size = sizeof(device.dither.detector.settings.transfer.raw[11]);
Diletant 183:c7a9c309086c 1052 hashParamTable[236].hash = 0x4545fcb;
Diletant 183:c7a9c309086c 1053 hashParamTable[236].ref = &device.plcs.reset.up.settings.environment.trigger[13];
Diletant 183:c7a9c309086c 1054 hashParamTable[236].size = sizeof(device.plcs.reset.up.settings.environment.trigger[13]);
Diletant 183:c7a9c309086c 1055 hashParamTable[237].hash = 0x45a15cba;
Diletant 183:c7a9c309086c 1056 hashParamTable[237].ref = &device.sensor.settings.block;
Diletant 183:c7a9c309086c 1057 hashParamTable[237].size = sizeof(device.sensor.settings.block);
Diletant 183:c7a9c309086c 1058 hashParamTable[238].hash = 0x45c1f57f;
Diletant 183:c7a9c309086c 1059 hashParamTable[238].ref = &device.dither.detector.settings.transfer.restored[11];
Diletant 183:c7a9c309086c 1060 hashParamTable[238].size = sizeof(device.dither.detector.settings.transfer.restored[11]);
Diletant 183:c7a9c309086c 1061 hashParamTable[239].hash = 0x47502484;
Diletant 183:c7a9c309086c 1062 hashParamTable[239].ref = &device.sequencer.sampler.state.voltage;
Diletant 183:c7a9c309086c 1063 hashParamTable[239].size = sizeof(device.sequencer.sampler.state.voltage);
Diletant 183:c7a9c309086c 1064 hashParamTable[240].hash = 0x47711390;
Diletant 183:c7a9c309086c 1065 hashParamTable[240].ref = &device.plcs.feedback.settings.transfer.normalized[6];
Diletant 183:c7a9c309086c 1066 hashParamTable[240].size = sizeof(device.plcs.feedback.settings.transfer.normalized[6]);
Diletant 183:c7a9c309086c 1067 hashParamTable[241].hash = 0x47e9cdf6;
Diletant 183:c7a9c309086c 1068 hashParamTable[241].ref = &device.plcs.bias.settings.transfer.normalized[15];
Diletant 183:c7a9c309086c 1069 hashParamTable[241].size = sizeof(device.plcs.bias.settings.transfer.normalized[15]);
Diletant 183:c7a9c309086c 1070 hashParamTable[242].hash = 0x47f999aa;
Diletant 183:c7a9c309086c 1071 hashParamTable[242].ref = &device.isacs.regulator.settings.transfer.correction[7];
Diletant 183:c7a9c309086c 1072 hashParamTable[242].size = sizeof(device.isacs.regulator.settings.transfer.correction[7]);
Diletant 183:c7a9c309086c 1073 hashParamTable[243].hash = 0x4816be37;
Diletant 183:c7a9c309086c 1074 hashParamTable[243].ref = &device.dither.detector.settings.filter.factor[23];
Diletant 183:c7a9c309086c 1075 hashParamTable[243].size = sizeof(device.dither.detector.settings.filter.factor[23]);
Diletant 183:c7a9c309086c 1076 hashParamTable[244].hash = 0x48178497;
Diletant 183:c7a9c309086c 1077 hashParamTable[244].ref = &device.tss.temperature.settings.transfer.raw[6];
Diletant 183:c7a9c309086c 1078 hashParamTable[244].size = sizeof(device.tss.temperature.settings.transfer.raw[6]);
Diletant 183:c7a9c309086c 1079 hashParamTable[245].hash = 0x4856ee04;
Diletant 183:c7a9c309086c 1080 hashParamTable[245].ref = &device.ccs.current[0].settings.transfer.raw[3];
Diletant 183:c7a9c309086c 1081 hashParamTable[245].size = sizeof(device.ccs.current[0].settings.transfer.raw[3]);
Diletant 183:c7a9c309086c 1082 hashParamTable[246].hash = 0x48d63285;
Diletant 183:c7a9c309086c 1083 hashParamTable[246].ref = &device.plcs.regulator.state.correction;
Diletant 183:c7a9c309086c 1084 hashParamTable[246].size = sizeof(device.plcs.regulator.state.correction);
Diletant 183:c7a9c309086c 1085 hashParamTable[247].hash = 0x49345af5;
Diletant 183:c7a9c309086c 1086 hashParamTable[247].ref = &device.plcs.reset.up.settings.environment.temperature[7];
Diletant 183:c7a9c309086c 1087 hashParamTable[247].size = sizeof(device.plcs.reset.up.settings.environment.temperature[7]);
Diletant 183:c7a9c309086c 1088 hashParamTable[248].hash = 0x497b86b9;
Diletant 183:c7a9c309086c 1089 hashParamTable[248].ref = &device.tss.gradient.settings.transfer.celsius[15];
Diletant 183:c7a9c309086c 1090 hashParamTable[248].size = sizeof(device.tss.gradient.settings.transfer.celsius[15]);
Diletant 183:c7a9c309086c 1091 hashParamTable[249].hash = 0x498a9f45;
Diletant 183:c7a9c309086c 1092 hashParamTable[249].ref = &device.controller.I2C.state.buffer[2];
Diletant 183:c7a9c309086c 1093 hashParamTable[249].size = sizeof(device.controller.I2C.state.buffer[2]);
Diletant 183:c7a9c309086c 1094 hashParamTable[250].hash = 0x49ff96d1;
Diletant 183:c7a9c309086c 1095 hashParamTable[250].ref = &device.dither.amplitude.settings.transfer.correction[1];
Diletant 183:c7a9c309086c 1096 hashParamTable[250].size = sizeof(device.dither.amplitude.settings.transfer.correction[1]);
Diletant 183:c7a9c309086c 1097 hashParamTable[251].hash = 0x4a14c406;
Diletant 183:c7a9c309086c 1098 hashParamTable[251].ref = &device.plcs.output.settings.transfer.code[14];
Diletant 183:c7a9c309086c 1099 hashParamTable[251].size = sizeof(device.plcs.output.settings.transfer.code[14]);
Diletant 183:c7a9c309086c 1100 hashParamTable[252].hash = 0x4a50006e;
Diletant 183:c7a9c309086c 1101 hashParamTable[252].ref = &device.dither.detector.settings.filter.factor[13];
Diletant 183:c7a9c309086c 1102 hashParamTable[252].size = sizeof(device.dither.detector.settings.filter.factor[13]);
Diletant 183:c7a9c309086c 1103 hashParamTable[253].hash = 0x4a6cfb0b;
Diletant 183:c7a9c309086c 1104 hashParamTable[253].ref = &device.plcs.reset.up.state.trigger;
Diletant 183:c7a9c309086c 1105 hashParamTable[253].size = sizeof(device.plcs.reset.up.state.trigger);
Diletant 183:c7a9c309086c 1106 hashParamTable[254].hash = 0x4a75ad0c;
Diletant 183:c7a9c309086c 1107 hashParamTable[254].ref = &device.dither.pulse.settings.width;
Diletant 183:c7a9c309086c 1108 hashParamTable[254].size = sizeof(device.dither.pulse.settings.width);
Diletant 183:c7a9c309086c 1109 hashParamTable[255].hash = 0x4adc0b31;
Diletant 183:c7a9c309086c 1110 hashParamTable[255].ref = &device.plcs.reset.down.state.target;
Diletant 183:c7a9c309086c 1111 hashParamTable[255].size = sizeof(device.plcs.reset.down.state.target);
Diletant 183:c7a9c309086c 1112 hashParamTable[256].hash = 0x4b097ccb;
Diletant 183:c7a9c309086c 1113 hashParamTable[256].ref = &device.controller.SSP.out[0];
Diletant 183:c7a9c309086c 1114 hashParamTable[256].size = sizeof(device.controller.SSP.out[0]);
Diletant 183:c7a9c309086c 1115 hashParamTable[257].hash = 0x4b15c90c;
Diletant 183:c7a9c309086c 1116 hashParamTable[257].ref = &device.plcs.reset.up.settings.environment.trigger[14];
Diletant 183:c7a9c309086c 1117 hashParamTable[257].size = sizeof(device.plcs.reset.up.settings.environment.trigger[14]);
Diletant 183:c7a9c309086c 1118 hashParamTable[258].hash = 0x4b2622b4;
Diletant 183:c7a9c309086c 1119 hashParamTable[258].ref = &device.ccs.current[0].settings.transfer.points;
Diletant 183:c7a9c309086c 1120 hashParamTable[258].size = sizeof(device.ccs.current[0].settings.transfer.points);
Diletant 183:c7a9c309086c 1121 hashParamTable[259].hash = 0x4bb4cbdb;
Diletant 183:c7a9c309086c 1122 hashParamTable[259].ref = &device.isacs.input.settings.transfer.raw[1];
Diletant 183:c7a9c309086c 1123 hashParamTable[259].size = sizeof(device.isacs.input.settings.transfer.raw[1]);
Diletant 183:c7a9c309086c 1124 hashParamTable[260].hash = 0x4be600f;
Diletant 183:c7a9c309086c 1125 hashParamTable[260].ref = &device.tss.gradient.settings.transfer.celsius[2];
Diletant 183:c7a9c309086c 1126 hashParamTable[260].size = sizeof(device.tss.gradient.settings.transfer.celsius[2]);
Diletant 183:c7a9c309086c 1127 hashParamTable[261].hash = 0x4bfff6c8;
Diletant 183:c7a9c309086c 1128 hashParamTable[261].ref = &device.tss.gradient.settings.transfer.celsius[5];
Diletant 183:c7a9c309086c 1129 hashParamTable[261].size = sizeof(device.tss.gradient.settings.transfer.celsius[5]);
Diletant 183:c7a9c309086c 1130 hashParamTable[262].hash = 0x4c732e16;
Diletant 183:c7a9c309086c 1131 hashParamTable[262].ref = &device.plcs.reset.down.settings.environment.target[11];
Diletant 183:c7a9c309086c 1132 hashParamTable[262].size = sizeof(device.plcs.reset.down.settings.environment.target[11]);
Diletant 183:c7a9c309086c 1133 hashParamTable[263].hash = 0x4ccb0de8;
Diletant 183:c7a9c309086c 1134 hashParamTable[263].ref = &device.plcs.reset.up.settings.environment.target[12];
Diletant 183:c7a9c309086c 1135 hashParamTable[263].size = sizeof(device.plcs.reset.up.settings.environment.target[12]);
Diletant 183:c7a9c309086c 1136 hashParamTable[264].hash = 0x4d4d3007;
Diletant 183:c7a9c309086c 1137 hashParamTable[264].ref = &device.isacs.output.settings.transfer.voltage[6];
Diletant 183:c7a9c309086c 1138 hashParamTable[264].size = sizeof(device.isacs.output.settings.transfer.voltage[6]);
Diletant 183:c7a9c309086c 1139 hashParamTable[265].hash = 0x4d730bd4;
Diletant 183:c7a9c309086c 1140 hashParamTable[265].ref = &device.dither.frequency.settings.transfer.error[9];
Diletant 183:c7a9c309086c 1141 hashParamTable[265].size = sizeof(device.dither.frequency.settings.transfer.error[9]);
Diletant 183:c7a9c309086c 1142 hashParamTable[266].hash = 0x4d7d9e2e;
Diletant 183:c7a9c309086c 1143 hashParamTable[266].ref = &device.dither.frequency.settings.transfer.error[14];
Diletant 183:c7a9c309086c 1144 hashParamTable[266].size = sizeof(device.dither.frequency.settings.transfer.error[14]);
Diletant 183:c7a9c309086c 1145 hashParamTable[267].hash = 0x4e6a726f;
Diletant 183:c7a9c309086c 1146 hashParamTable[267].ref = &device.plcs.reset.up.settings.environment.target[6];
Diletant 183:c7a9c309086c 1147 hashParamTable[267].size = sizeof(device.plcs.reset.up.settings.environment.target[6]);
Diletant 183:c7a9c309086c 1148 hashParamTable[268].hash = 0x4e7743c1;
Diletant 183:c7a9c309086c 1149 hashParamTable[268].ref = &device.dither.amplitude.settings.transfer.correction[11];
Diletant 183:c7a9c309086c 1150 hashParamTable[268].size = sizeof(device.dither.amplitude.settings.transfer.correction[11]);
Diletant 183:c7a9c309086c 1151 hashParamTable[269].hash = 0x4ea5aa68;
Diletant 183:c7a9c309086c 1152 hashParamTable[269].ref = &device.plcs.bias.settings.transfer.raw[6];
Diletant 183:c7a9c309086c 1153 hashParamTable[269].size = sizeof(device.plcs.bias.settings.transfer.raw[6]);
Diletant 183:c7a9c309086c 1154 hashParamTable[270].hash = 0x4ea7ad32;
Diletant 183:c7a9c309086c 1155 hashParamTable[270].ref = &device.plcs.feedback.settings.transfer.raw[6];
Diletant 183:c7a9c309086c 1156 hashParamTable[270].size = sizeof(device.plcs.feedback.settings.transfer.raw[6]);
Diletant 183:c7a9c309086c 1157 hashParamTable[271].hash = 0x4ec44358;
Diletant 183:c7a9c309086c 1158 hashParamTable[271].ref = &device.isacs.regulator.settings.transfer.error[3];
Diletant 183:c7a9c309086c 1159 hashParamTable[271].size = sizeof(device.isacs.regulator.settings.transfer.error[3]);
Diletant 183:c7a9c309086c 1160 hashParamTable[272].hash = 0x4ec65d42;
Diletant 183:c7a9c309086c 1161 hashParamTable[272].ref = &device.plcs.feedback.settings.transfer.raw[10];
Diletant 183:c7a9c309086c 1162 hashParamTable[272].size = sizeof(device.plcs.feedback.settings.transfer.raw[10]);
Diletant 183:c7a9c309086c 1163 hashParamTable[273].hash = 0x4ec8ba0e;
Diletant 183:c7a9c309086c 1164 hashParamTable[273].ref = &device.plcs.reset.down.state.trigger;
Diletant 183:c7a9c309086c 1165 hashParamTable[273].size = sizeof(device.plcs.reset.down.state.trigger);
Diletant 183:c7a9c309086c 1166 hashParamTable[274].hash = 0x4f55d1c;
Diletant 183:c7a9c309086c 1167 hashParamTable[274].ref = &device.isacs.input.settings.transfer.raw[6];
Diletant 183:c7a9c309086c 1168 hashParamTable[274].size = sizeof(device.isacs.input.settings.transfer.raw[6]);
Diletant 183:c7a9c309086c 1169 hashParamTable[275].hash = 0x4fd98d13;
Diletant 183:c7a9c309086c 1170 hashParamTable[275].ref = &device.isacs.output.settings.start.voltage;
Diletant 183:c7a9c309086c 1171 hashParamTable[275].size = sizeof(device.isacs.output.settings.start.voltage);
Diletant 183:c7a9c309086c 1172 hashParamTable[276].hash = 0x4ff9b3a8;
Diletant 183:c7a9c309086c 1173 hashParamTable[276].ref = &device.dither.detector.settings.transfer.raw[5];
Diletant 183:c7a9c309086c 1174 hashParamTable[276].size = sizeof(device.dither.detector.settings.transfer.raw[5]);
Diletant 183:c7a9c309086c 1175 hashParamTable[277].hash = 0x502f6bb4;
Diletant 183:c7a9c309086c 1176 hashParamTable[277].ref = &device.plcs.reset.up.settings.environment.temperature[6];
Diletant 183:c7a9c309086c 1177 hashParamTable[277].size = sizeof(device.plcs.reset.up.settings.environment.temperature[6]);
Diletant 183:c7a9c309086c 1178 hashParamTable[278].hash = 0x5060b7f8;
Diletant 183:c7a9c309086c 1179 hashParamTable[278].ref = &device.tss.gradient.settings.transfer.celsius[14];
Diletant 183:c7a9c309086c 1180 hashParamTable[278].size = sizeof(device.tss.gradient.settings.transfer.celsius[14]);
Diletant 183:c7a9c309086c 1181 hashParamTable[279].hash = 0x5091ae04;
Diletant 183:c7a9c309086c 1182 hashParamTable[279].ref = &device.controller.I2C.state.buffer[3];
Diletant 183:c7a9c309086c 1183 hashParamTable[279].size = sizeof(device.controller.I2C.state.buffer[3]);
Diletant 183:c7a9c309086c 1184 hashParamTable[280].hash = 0x50e4a790;
Diletant 183:c7a9c309086c 1185 hashParamTable[280].ref = &device.dither.amplitude.settings.transfer.correction[0];
Diletant 183:c7a9c309086c 1186 hashParamTable[280].size = sizeof(device.dither.amplitude.settings.transfer.correction[0]);
Diletant 183:c7a9c309086c 1187 hashParamTable[281].hash = 0x510cb5d6;
Diletant 183:c7a9c309086c 1188 hashParamTable[281].ref = &device.tss.temperature.settings.transfer.raw[7];
Diletant 183:c7a9c309086c 1189 hashParamTable[281].size = sizeof(device.tss.temperature.settings.transfer.raw[7]);
Diletant 183:c7a9c309086c 1190 hashParamTable[282].hash = 0x510d8f76;
Diletant 183:c7a9c309086c 1191 hashParamTable[282].ref = &device.dither.detector.settings.filter.factor[22];
Diletant 183:c7a9c309086c 1192 hashParamTable[282].size = sizeof(device.dither.detector.settings.filter.factor[22]);
Diletant 183:c7a9c309086c 1193 hashParamTable[283].hash = 0x51196a9;
Diletant 183:c7a9c309086c 1194 hashParamTable[283].ref = &device.dither.detector.settings.filter.factor[14];
Diletant 183:c7a9c309086c 1195 hashParamTable[283].size = sizeof(device.dither.detector.settings.filter.factor[14]);
Diletant 183:c7a9c309086c 1196 hashParamTable[284].hash = 0x514ddf45;
Diletant 183:c7a9c309086c 1197 hashParamTable[284].ref = &device.ccs.current[0].settings.transfer.raw[2];
Diletant 183:c7a9c309086c 1198 hashParamTable[284].size = sizeof(device.ccs.current[0].settings.transfer.raw[2]);
Diletant 183:c7a9c309086c 1199 hashParamTable[285].hash = 0x520ef84d;
Diletant 183:c7a9c309086c 1200 hashParamTable[285].ref = &device.plcs.reset.up.settings.environment.trigger[15];
Diletant 183:c7a9c309086c 1201 hashParamTable[285].size = sizeof(device.plcs.reset.up.settings.environment.trigger[15]);
Diletant 183:c7a9c309086c 1202 hashParamTable[286].hash = 0x52124d8a;
Diletant 183:c7a9c309086c 1203 hashParamTable[286].ref = &device.controller.SSP.out[1];
Diletant 183:c7a9c309086c 1204 hashParamTable[286].size = sizeof(device.controller.SSP.out[1]);
Diletant 183:c7a9c309086c 1205 hashParamTable[287].hash = 0x525b6730;
Diletant 183:c7a9c309086c 1206 hashParamTable[287].ref = &device.controller.I2C.state.enabled;
Diletant 183:c7a9c309086c 1207 hashParamTable[287].size = sizeof(device.controller.I2C.state.enabled);
Diletant 183:c7a9c309086c 1208 hashParamTable[288].hash = 0x528cd113;
Diletant 183:c7a9c309086c 1209 hashParamTable[288].ref = &device.plcs.feedback.state.input;
Diletant 183:c7a9c309086c 1210 hashParamTable[288].size = sizeof(device.plcs.feedback.state.input);
Diletant 183:c7a9c309086c 1211 hashParamTable[289].hash = 0x52affa9a;
Diletant 183:c7a9c309086c 1212 hashParamTable[289].ref = &device.isacs.input.settings.transfer.raw[0];
Diletant 183:c7a9c309086c 1213 hashParamTable[289].size = sizeof(device.isacs.input.settings.transfer.raw[0]);
Diletant 183:c7a9c309086c 1214 hashParamTable[290].hash = 0x52e4c789;
Diletant 183:c7a9c309086c 1215 hashParamTable[290].ref = &device.tss.gradient.settings.transfer.celsius[4];
Diletant 183:c7a9c309086c 1216 hashParamTable[290].size = sizeof(device.tss.gradient.settings.transfer.celsius[4]);
Diletant 183:c7a9c309086c 1217 hashParamTable[291].hash = 0x530ff547;
Diletant 183:c7a9c309086c 1218 hashParamTable[291].ref = &device.plcs.output.settings.transfer.code[15];
Diletant 183:c7a9c309086c 1219 hashParamTable[291].size = sizeof(device.plcs.output.settings.transfer.code[15]);
Diletant 183:c7a9c309086c 1220 hashParamTable[292].hash = 0x534b312f;
Diletant 183:c7a9c309086c 1221 hashParamTable[292].ref = &device.dither.detector.settings.filter.factor[12];
Diletant 183:c7a9c309086c 1222 hashParamTable[292].size = sizeof(device.dither.detector.settings.filter.factor[12]);
Diletant 183:c7a9c309086c 1223 hashParamTable[293].hash = 0x542e0c62;
Diletant 183:c7a9c309086c 1224 hashParamTable[293].ref = &device.controller.flash.settings.hashSector;
Diletant 183:c7a9c309086c 1225 hashParamTable[293].size = sizeof(device.controller.flash.settings.hashSector);
Diletant 183:c7a9c309086c 1226 hashParamTable[294].hash = 0x54560146;
Diletant 183:c7a9c309086c 1227 hashParamTable[294].ref = &device.isacs.output.settings.transfer.voltage[7];
Diletant 183:c7a9c309086c 1228 hashParamTable[294].size = sizeof(device.isacs.output.settings.transfer.voltage[7]);
Diletant 183:c7a9c309086c 1229 hashParamTable[295].hash = 0x5466af6f;
Diletant 183:c7a9c309086c 1230 hashParamTable[295].ref = &device.dither.frequency.settings.transfer.error[15];
Diletant 183:c7a9c309086c 1231 hashParamTable[295].size = sizeof(device.dither.frequency.settings.transfer.error[15]);
Diletant 183:c7a9c309086c 1232 hashParamTable[296].hash = 0x54683a95;
Diletant 183:c7a9c309086c 1233 hashParamTable[296].ref = &device.dither.frequency.settings.transfer.error[8];
Diletant 183:c7a9c309086c 1234 hashParamTable[296].size = sizeof(device.dither.frequency.settings.transfer.error[8]);
Diletant 183:c7a9c309086c 1235 hashParamTable[297].hash = 0x55552c1;
Diletant 183:c7a9c309086c 1236 hashParamTable[297].ref = &device.plcs.output.settings.transfer.code[13];
Diletant 183:c7a9c309086c 1237 hashParamTable[297].size = sizeof(device.plcs.output.settings.transfer.code[13]);
Diletant 183:c7a9c309086c 1238 hashParamTable[298].hash = 0x55681f57;
Diletant 183:c7a9c309086c 1239 hashParamTable[298].ref = &device.plcs.reset.down.settings.environment.target[10];
Diletant 183:c7a9c309086c 1240 hashParamTable[298].size = sizeof(device.plcs.reset.down.settings.environment.target[10]);
Diletant 183:c7a9c309086c 1241 hashParamTable[299].hash = 0x55893f99;
Diletant 183:c7a9c309086c 1242 hashParamTable[299].ref = &device.dither.pulse.state.counter;
Diletant 183:c7a9c309086c 1243 hashParamTable[299].size = sizeof(device.dither.pulse.state.counter);
Diletant 183:c7a9c309086c 1244 hashParamTable[300].hash = 0x55d03ca9;
Diletant 183:c7a9c309086c 1245 hashParamTable[300].ref = &device.plcs.reset.up.settings.environment.target[13];
Diletant 183:c7a9c309086c 1246 hashParamTable[300].size = sizeof(device.plcs.reset.up.settings.environment.target[13]);
Diletant 183:c7a9c309086c 1247 hashParamTable[301].hash = 0x56e282e9;
Diletant 183:c7a9c309086c 1248 hashParamTable[301].ref = &device.dither.detector.settings.transfer.raw[4];
Diletant 183:c7a9c309086c 1249 hashParamTable[301].size = sizeof(device.dither.detector.settings.transfer.raw[4]);
Diletant 183:c7a9c309086c 1250 hashParamTable[302].hash = 0x572d02b;
Diletant 183:c7a9c309086c 1251 hashParamTable[302].ref = &device.sequencer.output.analog.settings.transfer.code[11];
Diletant 183:c7a9c309086c 1252 hashParamTable[302].size = sizeof(device.sequencer.output.analog.settings.transfer.code[11]);
Diletant 183:c7a9c309086c 1253 hashParamTable[303].hash = 0x575791d2;
Diletant 183:c7a9c309086c 1254 hashParamTable[303].ref = &device.dither.amplitude.settings.reference;
Diletant 183:c7a9c309086c 1255 hashParamTable[303].size = sizeof(device.dither.amplitude.settings.reference);
Diletant 183:c7a9c309086c 1256 hashParamTable[304].hash = 0x576c7280;
Diletant 183:c7a9c309086c 1257 hashParamTable[304].ref = &device.dither.amplitude.settings.transfer.correction[10];
Diletant 183:c7a9c309086c 1258 hashParamTable[304].size = sizeof(device.dither.amplitude.settings.transfer.correction[10]);
Diletant 183:c7a9c309086c 1259 hashParamTable[305].hash = 0x5771432e;
Diletant 183:c7a9c309086c 1260 hashParamTable[305].ref = &device.plcs.reset.up.settings.environment.target[7];
Diletant 183:c7a9c309086c 1261 hashParamTable[305].size = sizeof(device.plcs.reset.up.settings.environment.target[7]);
Diletant 183:c7a9c309086c 1262 hashParamTable[306].hash = 0x57bc9c73;
Diletant 183:c7a9c309086c 1263 hashParamTable[306].ref = &device.plcs.feedback.settings.transfer.raw[7];
Diletant 183:c7a9c309086c 1264 hashParamTable[306].size = sizeof(device.plcs.feedback.settings.transfer.raw[7]);
Diletant 183:c7a9c309086c 1265 hashParamTable[307].hash = 0x57be9b29;
Diletant 183:c7a9c309086c 1266 hashParamTable[307].ref = &device.plcs.bias.settings.transfer.raw[7];
Diletant 183:c7a9c309086c 1267 hashParamTable[307].size = sizeof(device.plcs.bias.settings.transfer.raw[7]);
Diletant 183:c7a9c309086c 1268 hashParamTable[308].hash = 0x57dd6c03;
Diletant 183:c7a9c309086c 1269 hashParamTable[308].ref = &device.plcs.feedback.settings.transfer.raw[11];
Diletant 183:c7a9c309086c 1270 hashParamTable[308].size = sizeof(device.plcs.feedback.settings.transfer.raw[11]);
Diletant 183:c7a9c309086c 1271 hashParamTable[309].hash = 0x57df7219;
Diletant 183:c7a9c309086c 1272 hashParamTable[309].ref = &device.isacs.regulator.settings.transfer.error[2];
Diletant 183:c7a9c309086c 1273 hashParamTable[309].size = sizeof(device.isacs.regulator.settings.transfer.error[2]);
Diletant 183:c7a9c309086c 1274 hashParamTable[310].hash = 0x58fd647e;
Diletant 183:c7a9c309086c 1275 hashParamTable[310].ref = &device.controller.SSP.in[3];
Diletant 183:c7a9c309086c 1276 hashParamTable[310].size = sizeof(device.controller.SSP.in[3]);
Diletant 183:c7a9c309086c 1277 hashParamTable[311].hash = 0x5921f570;
Diletant 183:c7a9c309086c 1278 hashParamTable[311].ref = &device.plcs.regulator.settings.transfer.correction[0];
Diletant 183:c7a9c309086c 1279 hashParamTable[311].size = sizeof(device.plcs.regulator.settings.transfer.correction[0]);
Diletant 183:c7a9c309086c 1280 hashParamTable[312].hash = 0x596e09ec;
Diletant 183:c7a9c309086c 1281 hashParamTable[312].ref = &device.plcs.output.settings.transfer.code[7];
Diletant 183:c7a9c309086c 1282 hashParamTable[312].size = sizeof(device.plcs.output.settings.transfer.code[7]);
Diletant 183:c7a9c309086c 1283 hashParamTable[313].hash = 0x599f579b;
Diletant 183:c7a9c309086c 1284 hashParamTable[313].ref = &device.tss.gradient.state.celsius;
Diletant 183:c7a9c309086c 1285 hashParamTable[313].size = sizeof(device.tss.gradient.state.celsius);
Diletant 183:c7a9c309086c 1286 hashParamTable[314].hash = 0x59e701c9;
Diletant 183:c7a9c309086c 1287 hashParamTable[314].ref = &device.counters.dither.state.delta[24];
Diletant 183:c7a9c309086c 1288 hashParamTable[314].size = sizeof(device.counters.dither.state.delta[24]);
Diletant 183:c7a9c309086c 1289 hashParamTable[315].hash = 0x5aa20722;
Diletant 183:c7a9c309086c 1290 hashParamTable[315].ref = &device.dither.amplitude.settings.transfer.error[6];
Diletant 183:c7a9c309086c 1291 hashParamTable[315].size = sizeof(device.dither.amplitude.settings.transfer.error[6]);
Diletant 183:c7a9c309086c 1292 hashParamTable[316].hash = 0x5ab07032;
Diletant 183:c7a9c309086c 1293 hashParamTable[316].ref = &device.sequencer.output.analog.state.enabled;
Diletant 183:c7a9c309086c 1294 hashParamTable[316].size = sizeof(device.sequencer.output.analog.state.enabled);
Diletant 183:c7a9c309086c 1295 hashParamTable[317].hash = 0x5b48bc99;
Diletant 183:c7a9c309086c 1296 hashParamTable[317].ref = &device.plcs.reset.up.settings.environment.trigger[1];
Diletant 183:c7a9c309086c 1297 hashParamTable[317].size = sizeof(device.plcs.reset.up.settings.environment.trigger[1]);
Diletant 183:c7a9c309086c 1298 hashParamTable[318].hash = 0x5b6ba5ac;
Diletant 183:c7a9c309086c 1299 hashParamTable[318].ref = &device.isacs.input.settings.transfer.V[0];
Diletant 183:c7a9c309086c 1300 hashParamTable[318].size = sizeof(device.isacs.input.settings.transfer.V[0]);
Diletant 183:c7a9c309086c 1301 hashParamTable[319].hash = 0x5b944d7b;
Diletant 183:c7a9c309086c 1302 hashParamTable[319].ref = &device.dither.detector.settings.filter.factor[1];
Diletant 183:c7a9c309086c 1303 hashParamTable[319].size = sizeof(device.dither.detector.settings.filter.factor[1]);
Diletant 183:c7a9c309086c 1304 hashParamTable[320].hash = 0x5ba1bf90;
Diletant 183:c7a9c309086c 1305 hashParamTable[320].ref = &device.counters.dither.state.delta[14];
Diletant 183:c7a9c309086c 1306 hashParamTable[320].size = sizeof(device.counters.dither.state.delta[14]);
Diletant 183:c7a9c309086c 1307 hashParamTable[321].hash = 0x5bb73eb8;
Diletant 183:c7a9c309086c 1308 hashParamTable[321].ref = &device.dither.detector.state.sum;
Diletant 183:c7a9c309086c 1309 hashParamTable[321].size = sizeof(device.dither.detector.state.sum);
Diletant 183:c7a9c309086c 1310 hashParamTable[322].hash = 0x5bbe5132;
Diletant 183:c7a9c309086c 1311 hashParamTable[322].ref = &device.counters.meander.state.amplitude;
Diletant 183:c7a9c309086c 1312 hashParamTable[322].size = sizeof(device.counters.meander.state.amplitude);
Diletant 183:c7a9c309086c 1313 hashParamTable[323].hash = 0x5bf09f67;
Diletant 183:c7a9c309086c 1314 hashParamTable[323].ref = &device.plcs.reset.down.settings.environment.trigger[2];
Diletant 183:c7a9c309086c 1315 hashParamTable[323].size = sizeof(device.plcs.reset.down.settings.environment.trigger[2]);
Diletant 183:c7a9c309086c 1316 hashParamTable[324].hash = 0x5c1786aa;
Diletant 183:c7a9c309086c 1317 hashParamTable[324].ref = &device.plcs.reset.down.settings.environment.trigger[13];
Diletant 183:c7a9c309086c 1318 hashParamTable[324].size = sizeof(device.plcs.reset.down.settings.environment.trigger[13]);
Diletant 183:c7a9c309086c 1319 hashParamTable[325].hash = 0x5c5bc75f;
Diletant 183:c7a9c309086c 1320 hashParamTable[325].ref = &device.dither.detector.settings.transfer.raw[10];
Diletant 183:c7a9c309086c 1321 hashParamTable[325].size = sizeof(device.dither.detector.settings.transfer.raw[10]);
Diletant 183:c7a9c309086c 1322 hashParamTable[326].hash = 0x5cdac43e;
Diletant 183:c7a9c309086c 1323 hashParamTable[326].ref = &device.dither.detector.settings.transfer.restored[10];
Diletant 183:c7a9c309086c 1324 hashParamTable[326].size = sizeof(device.dither.detector.settings.transfer.restored[10]);
Diletant 183:c7a9c309086c 1325 hashParamTable[327].hash = 0x5d3a1afb;
Diletant 183:c7a9c309086c 1326 hashParamTable[327].ref = &device.plcs.feedback.settings.transfer.normalized[13];
Diletant 183:c7a9c309086c 1327 hashParamTable[327].size = sizeof(device.plcs.feedback.settings.transfer.normalized[13]);
Diletant 183:c7a9c309086c 1328 hashParamTable[328].hash = 0x5d76bf57;
Diletant 183:c7a9c309086c 1329 hashParamTable[328].ref = &device.plcs.reset.down.settings.environment.target[4];
Diletant 183:c7a9c309086c 1330 hashParamTable[328].size = sizeof(device.plcs.reset.down.settings.environment.target[4]);
Diletant 183:c7a9c309086c 1331 hashParamTable[329].hash = 0x5da9c9f1;
Diletant 183:c7a9c309086c 1332 hashParamTable[329].ref = &device.dither.amplitude.settings.transfer.error[13];
Diletant 183:c7a9c309086c 1333 hashParamTable[329].size = sizeof(device.dither.amplitude.settings.transfer.error[13]);
Diletant 183:c7a9c309086c 1334 hashParamTable[330].hash = 0x5dd443ad;
Diletant 183:c7a9c309086c 1335 hashParamTable[330].ref = &device.plcs.reset.up.settings.environment.temperature[12];
Diletant 183:c7a9c309086c 1336 hashParamTable[330].size = sizeof(device.plcs.reset.up.settings.environment.temperature[12]);
Diletant 183:c7a9c309086c 1337 hashParamTable[331].hash = 0x5de953bb;
Diletant 183:c7a9c309086c 1338 hashParamTable[331].ref = &device.isacs.input.settings.transfer.V[10];
Diletant 183:c7a9c309086c 1339 hashParamTable[331].size = sizeof(device.isacs.input.settings.transfer.V[10]);
Diletant 183:c7a9c309086c 1340 hashParamTable[332].hash = 0x5e6a22d1;
Diletant 183:c7a9c309086c 1341 hashParamTable[332].ref = &device.plcs.feedback.settings.transfer.normalized[7];
Diletant 183:c7a9c309086c 1342 hashParamTable[332].size = sizeof(device.plcs.feedback.settings.transfer.normalized[7]);
Diletant 183:c7a9c309086c 1343 hashParamTable[333].hash = 0x5ee2a8eb;
Diletant 183:c7a9c309086c 1344 hashParamTable[333].ref = &device.isacs.regulator.settings.transfer.correction[6];
Diletant 183:c7a9c309086c 1345 hashParamTable[333].size = sizeof(device.isacs.regulator.settings.transfer.correction[6]);
Diletant 183:c7a9c309086c 1346 hashParamTable[334].hash = 0x5ef2fcb7;
Diletant 183:c7a9c309086c 1347 hashParamTable[334].ref = &device.plcs.bias.settings.transfer.normalized[14];
Diletant 183:c7a9c309086c 1348 hashParamTable[334].size = sizeof(device.plcs.bias.settings.transfer.normalized[14]);
Diletant 183:c7a9c309086c 1349 hashParamTable[335].hash = 0x5f9bfdd2;
Diletant 183:c7a9c309086c 1350 hashParamTable[335].ref = &device.dither.noise.state.range;
Diletant 183:c7a9c309086c 1351 hashParamTable[335].size = sizeof(device.dither.noise.state.range);
Diletant 183:c7a9c309086c 1352 hashParamTable[336].hash = 0x60999818;
Diletant 183:c7a9c309086c 1353 hashParamTable[336].ref = &device.isacs.input.settings.transfer.raw[2];
Diletant 183:c7a9c309086c 1354 hashParamTable[336].size = sizeof(device.isacs.input.settings.transfer.raw[2]);
Diletant 183:c7a9c309086c 1355 hashParamTable[337].hash = 0x60a01bc;
Diletant 183:c7a9c309086c 1356 hashParamTable[337].ref = &device.plcs.regulator.settings.transfer.error[10];
Diletant 183:c7a9c309086c 1357 hashParamTable[337].size = sizeof(device.plcs.regulator.settings.transfer.error[10]);
Diletant 183:c7a9c309086c 1358 hashParamTable[338].hash = 0x60d2a50b;
Diletant 183:c7a9c309086c 1359 hashParamTable[338].ref = &device.tss.gradient.settings.transfer.celsius[6];
Diletant 183:c7a9c309086c 1360 hashParamTable[338].size = sizeof(device.tss.gradient.settings.transfer.celsius[6]);
Diletant 183:c7a9c309086c 1361 hashParamTable[339].hash = 0x611e152f;
Diletant 183:c7a9c309086c 1362 hashParamTable[339].ref = &device.sequencer.output.analog.settings.transfer.code[15];
Diletant 183:c7a9c309086c 1363 hashParamTable[339].size = sizeof(device.sequencer.output.analog.settings.transfer.code[15]);
Diletant 183:c7a9c309086c 1364 hashParamTable[340].hash = 0x617d53ad;
Diletant 183:c7a9c309086c 1365 hashParamTable[340].ref = &device.dither.detector.settings.filter.factor[10];
Diletant 183:c7a9c309086c 1366 hashParamTable[340].size = sizeof(device.dither.detector.settings.filter.factor[10]);
Diletant 183:c7a9c309086c 1367 hashParamTable[341].hash = 0x62190936;
Diletant 183:c7a9c309086c 1368 hashParamTable[341].ref = &device.plcs.reset.up.settings.environment.temperature[4];
Diletant 183:c7a9c309086c 1369 hashParamTable[341].size = sizeof(device.plcs.reset.up.settings.environment.temperature[4]);
Diletant 183:c7a9c309086c 1370 hashParamTable[342].hash = 0x624f9da4;
Diletant 183:c7a9c309086c 1371 hashParamTable[342].ref = &device.dither.detector.settings.transfer.restored[9];
Diletant 183:c7a9c309086c 1372 hashParamTable[342].size = sizeof(device.dither.detector.settings.transfer.restored[9]);
Diletant 183:c7a9c309086c 1373 hashParamTable[343].hash = 0x6266c4b8;
Diletant 183:c7a9c309086c 1374 hashParamTable[343].ref = &device.plcs.regulator.settings.transfer.error[14];
Diletant 183:c7a9c309086c 1375 hashParamTable[343].size = sizeof(device.plcs.regulator.settings.transfer.error[14]);
Diletant 183:c7a9c309086c 1376 hashParamTable[344].hash = 0x62a7cc86;
Diletant 183:c7a9c309086c 1377 hashParamTable[344].ref = &device.controller.I2C.state.buffer[1];
Diletant 183:c7a9c309086c 1378 hashParamTable[344].size = sizeof(device.controller.I2C.state.buffer[1]);
Diletant 183:c7a9c309086c 1379 hashParamTable[345].hash = 0x62d2c512;
Diletant 183:c7a9c309086c 1380 hashParamTable[345].ref = &device.dither.amplitude.settings.transfer.correction[2];
Diletant 183:c7a9c309086c 1381 hashParamTable[345].size = sizeof(device.dither.amplitude.settings.transfer.correction[2]);
Diletant 183:c7a9c309086c 1382 hashParamTable[346].hash = 0x62f987c3;
Diletant 183:c7a9c309086c 1383 hashParamTable[346].ref = &device.dither.detector.settings.filter.factor[30];
Diletant 183:c7a9c309086c 1384 hashParamTable[346].size = sizeof(device.dither.detector.settings.filter.factor[30]);
Diletant 183:c7a9c309086c 1385 hashParamTable[347].hash = 0x633ad754;
Diletant 183:c7a9c309086c 1386 hashParamTable[347].ref = &device.tss.temperature.settings.transfer.raw[5];
Diletant 183:c7a9c309086c 1387 hashParamTable[347].size = sizeof(device.tss.temperature.settings.transfer.raw[5]);
Diletant 183:c7a9c309086c 1388 hashParamTable[348].hash = 0x633bbaf1;
Diletant 183:c7a9c309086c 1389 hashParamTable[348].ref = &device.dither.frequency.state.correction;
Diletant 183:c7a9c309086c 1390 hashParamTable[348].size = sizeof(device.dither.frequency.state.correction);
Diletant 183:c7a9c309086c 1391 hashParamTable[349].hash = 0x633bedf4;
Diletant 183:c7a9c309086c 1392 hashParamTable[349].ref = &device.dither.detector.settings.filter.factor[20];
Diletant 183:c7a9c309086c 1393 hashParamTable[349].size = sizeof(device.dither.detector.settings.filter.factor[20]);
Diletant 183:c7a9c309086c 1394 hashParamTable[350].hash = 0x633f2b2;
Diletant 183:c7a9c309086c 1395 hashParamTable[350].ref = &device.dither.pulse.state.max;
Diletant 183:c7a9c309086c 1396 hashParamTable[350].size = sizeof(device.dither.pulse.state.max);
Diletant 183:c7a9c309086c 1397 hashParamTable[351].hash = 0x634b9e76;
Diletant 183:c7a9c309086c 1398 hashParamTable[351].ref = &device.isacs.regulator.settings.start.scale;
Diletant 183:c7a9c309086c 1399 hashParamTable[351].size = sizeof(device.isacs.regulator.settings.start.scale);
Diletant 183:c7a9c309086c 1400 hashParamTable[352].hash = 0x635b8d69;
Diletant 183:c7a9c309086c 1401 hashParamTable[352].ref = &device.controller.I2C.settings.trigger;
Diletant 183:c7a9c309086c 1402 hashParamTable[352].size = sizeof(device.controller.I2C.settings.trigger);
Diletant 183:c7a9c309086c 1403 hashParamTable[353].hash = 0x637bbdc7;
Diletant 183:c7a9c309086c 1404 hashParamTable[353].ref = &device.ccs.current[0].settings.transfer.raw[0];
Diletant 183:c7a9c309086c 1405 hashParamTable[353].size = sizeof(device.ccs.current[0].settings.transfer.raw[0]);
Diletant 183:c7a9c309086c 1406 hashParamTable[354].hash = 0x63a107e;
Diletant 183:c7a9c309086c 1407 hashParamTable[354].ref = &device.tss.gradient.settings.transfer.celsius[12];
Diletant 183:c7a9c309086c 1408 hashParamTable[354].size = sizeof(device.tss.gradient.settings.transfer.celsius[12]);
Diletant 183:c7a9c309086c 1409 hashParamTable[355].hash = 0x64bd94a8;
Diletant 183:c7a9c309086c 1410 hashParamTable[355].ref = &device.dither.noise.state.disturbance;
Diletant 183:c7a9c309086c 1411 hashParamTable[355].size = sizeof(device.dither.noise.state.disturbance);
Diletant 183:c7a9c309086c 1412 hashParamTable[356].hash = 0x64bf4004;
Diletant 183:c7a9c309086c 1413 hashParamTable[356].ref = &device.plcs.reset.up.settings.environment.duration[8];
Diletant 183:c7a9c309086c 1414 hashParamTable[356].size = sizeof(device.plcs.reset.up.settings.environment.duration[8]);
Diletant 183:c7a9c309086c 1415 hashParamTable[357].hash = 0x64d4e06b;
Diletant 183:c7a9c309086c 1416 hashParamTable[357].ref = &device.dither.detector.settings.transfer.raw[6];
Diletant 183:c7a9c309086c 1417 hashParamTable[357].size = sizeof(device.dither.detector.settings.transfer.raw[6]);
Diletant 183:c7a9c309086c 1418 hashParamTable[358].hash = 0x64e94d33;
Diletant 183:c7a9c309086c 1419 hashParamTable[358].ref = &device.counters.latch.settings.reset;
Diletant 183:c7a9c309086c 1420 hashParamTable[358].size = sizeof(device.counters.latch.settings.reset);
Diletant 183:c7a9c309086c 1421 hashParamTable[359].hash = 0x650187b9;
Diletant 183:c7a9c309086c 1422 hashParamTable[359].ref = &device.isacs.output.settings.transfer.voltage[15];
Diletant 183:c7a9c309086c 1423 hashParamTable[359].size = sizeof(device.isacs.output.settings.transfer.voltage[15]);
Diletant 183:c7a9c309086c 1424 hashParamTable[360].hash = 0x6528390c;
Diletant 183:c7a9c309086c 1425 hashParamTable[360].ref = &device.dither.amplitude.settings.transfer.points;
Diletant 183:c7a9c309086c 1426 hashParamTable[360].size = sizeof(device.dither.amplitude.settings.transfer.points);
Diletant 183:c7a9c309086c 1427 hashParamTable[361].hash = 0x654721ac;
Diletant 183:c7a9c309086c 1428 hashParamTable[361].ref = &device.plcs.reset.up.settings.environment.target[5];
Diletant 183:c7a9c309086c 1429 hashParamTable[361].size = sizeof(device.plcs.reset.up.settings.environment.target[5]);
Diletant 183:c7a9c309086c 1430 hashParamTable[362].hash = 0x655a1002;
Diletant 183:c7a9c309086c 1431 hashParamTable[362].ref = &device.dither.amplitude.settings.transfer.correction[12];
Diletant 183:c7a9c309086c 1432 hashParamTable[362].size = sizeof(device.dither.amplitude.settings.transfer.correction[12]);
Diletant 183:c7a9c309086c 1433 hashParamTable[363].hash = 0x6588f9ab;
Diletant 183:c7a9c309086c 1434 hashParamTable[363].ref = &device.plcs.bias.settings.transfer.raw[5];
Diletant 183:c7a9c309086c 1435 hashParamTable[363].size = sizeof(device.plcs.bias.settings.transfer.raw[5]);
Diletant 183:c7a9c309086c 1436 hashParamTable[364].hash = 0x658afef1;
Diletant 183:c7a9c309086c 1437 hashParamTable[364].ref = &device.plcs.feedback.settings.transfer.raw[5];
Diletant 183:c7a9c309086c 1438 hashParamTable[364].size = sizeof(device.plcs.feedback.settings.transfer.raw[5]);
Diletant 183:c7a9c309086c 1439 hashParamTable[365].hash = 0x65e9109b;
Diletant 183:c7a9c309086c 1440 hashParamTable[365].ref = &device.isacs.regulator.settings.transfer.error[0];
Diletant 183:c7a9c309086c 1441 hashParamTable[365].size = sizeof(device.isacs.regulator.settings.transfer.error[0]);
Diletant 183:c7a9c309086c 1442 hashParamTable[366].hash = 0x65eb0e81;
Diletant 183:c7a9c309086c 1443 hashParamTable[366].ref = &device.plcs.feedback.settings.transfer.raw[13];
Diletant 183:c7a9c309086c 1444 hashParamTable[366].size = sizeof(device.plcs.feedback.settings.transfer.raw[13]);
Diletant 183:c7a9c309086c 1445 hashParamTable[367].hash = 0x664c6cbe;
Diletant 183:c7a9c309086c 1446 hashParamTable[367].ref = &device.controller.timer[0].state.TCR;
Diletant 183:c7a9c309086c 1447 hashParamTable[367].size = sizeof(device.controller.timer[0].state.TCR);
Diletant 183:c7a9c309086c 1448 hashParamTable[368].hash = 0x664ca255;
Diletant 183:c7a9c309086c 1449 hashParamTable[368].ref = &device.plcs.output.state.enabled;
Diletant 183:c7a9c309086c 1450 hashParamTable[368].size = sizeof(device.plcs.output.state.enabled);
Diletant 183:c7a9c309086c 1451 hashParamTable[369].hash = 0x665ae286;
Diletant 183:c7a9c309086c 1452 hashParamTable[369].ref = &device.counters.dither.state.angle;
Diletant 183:c7a9c309086c 1453 hashParamTable[369].size = sizeof(device.counters.dither.state.angle);
Diletant 183:c7a9c309086c 1454 hashParamTable[370].hash = 0x666063c4;
Diletant 183:c7a9c309086c 1455 hashParamTable[370].ref = &device.isacs.output.settings.transfer.voltage[5];
Diletant 183:c7a9c309086c 1456 hashParamTable[370].size = sizeof(device.isacs.output.settings.transfer.voltage[5]);
Diletant 183:c7a9c309086c 1457 hashParamTable[371].hash = 0x674eeb85;
Diletant 183:c7a9c309086c 1458 hashParamTable[371].ref = &device.controller.uart[0].state.DLL;
Diletant 183:c7a9c309086c 1459 hashParamTable[371].size = sizeof(device.controller.uart[0].state.DLL);
Diletant 183:c7a9c309086c 1460 hashParamTable[372].hash = 0x675cc32;
Diletant 183:c7a9c309086c 1461 hashParamTable[372].ref = &device.plcs.reset.up.settings.environment.temperature[0];
Diletant 183:c7a9c309086c 1462 hashParamTable[372].size = sizeof(device.plcs.reset.up.settings.environment.temperature[0]);
Diletant 183:c7a9c309086c 1463 hashParamTable[373].hash = 0x675e7dd5;
Diletant 183:c7a9c309086c 1464 hashParamTable[373].ref = &device.plcs.reset.down.settings.environment.target[12];
Diletant 183:c7a9c309086c 1465 hashParamTable[373].size = sizeof(device.plcs.reset.down.settings.environment.target[12]);
Diletant 183:c7a9c309086c 1466 hashParamTable[374].hash = 0x67623004;
Diletant 183:c7a9c309086c 1467 hashParamTable[374].ref = &device.tss.temperature.state.raw;
Diletant 183:c7a9c309086c 1468 hashParamTable[374].size = sizeof(device.tss.temperature.state.raw);
Diletant 183:c7a9c309086c 1469 hashParamTable[375].hash = 0x6771d50;
Diletant 183:c7a9c309086c 1470 hashParamTable[375].ref = &device.lightUp.settings.sequence;
Diletant 183:c7a9c309086c 1471 hashParamTable[375].size = sizeof(device.lightUp.settings.sequence);
Diletant 183:c7a9c309086c 1472 hashParamTable[376].hash = 0x67e65e2b;
Diletant 183:c7a9c309086c 1473 hashParamTable[376].ref = &device.plcs.reset.up.settings.environment.target[11];
Diletant 183:c7a9c309086c 1474 hashParamTable[376].size = sizeof(device.plcs.reset.up.settings.environment.target[11]);
Diletant 183:c7a9c309086c 1475 hashParamTable[377].hash = 0x688f56ab;
Diletant 183:c7a9c309086c 1476 hashParamTable[377].ref = &device.isacs.regulator.state.scale;
Diletant 183:c7a9c309086c 1477 hashParamTable[377].size = sizeof(device.isacs.regulator.state.scale);
Diletant 183:c7a9c309086c 1478 hashParamTable[378].hash = 0x689465a0;
Diletant 183:c7a9c309086c 1479 hashParamTable[378].ref = &device.dither.amplitude.settings.transfer.error[4];
Diletant 183:c7a9c309086c 1480 hashParamTable[378].size = sizeof(device.dither.amplitude.settings.transfer.error[4]);
Diletant 183:c7a9c309086c 1481 hashParamTable[379].hash = 0x695dc72e;
Diletant 183:c7a9c309086c 1482 hashParamTable[379].ref = &device.isacs.input.settings.transfer.V[2];
Diletant 183:c7a9c309086c 1483 hashParamTable[379].size = sizeof(device.isacs.input.settings.transfer.V[2]);
Diletant 183:c7a9c309086c 1484 hashParamTable[380].hash = 0x697ede1b;
Diletant 183:c7a9c309086c 1485 hashParamTable[380].ref = &device.plcs.reset.up.settings.environment.trigger[3];
Diletant 183:c7a9c309086c 1486 hashParamTable[380].size = sizeof(device.plcs.reset.up.settings.environment.trigger[3]);
Diletant 183:c7a9c309086c 1487 hashParamTable[381].hash = 0x6997dd12;
Diletant 183:c7a9c309086c 1488 hashParamTable[381].ref = &device.counters.dither.state.delta[16];
Diletant 183:c7a9c309086c 1489 hashParamTable[381].size = sizeof(device.counters.dither.state.delta[16]);
Diletant 183:c7a9c309086c 1490 hashParamTable[382].hash = 0x69a22ff9;
Diletant 183:c7a9c309086c 1491 hashParamTable[382].ref = &device.dither.detector.settings.filter.factor[3];
Diletant 183:c7a9c309086c 1492 hashParamTable[382].size = sizeof(device.dither.detector.settings.filter.factor[3]);
Diletant 183:c7a9c309086c 1493 hashParamTable[383].hash = 0x69c6fde5;
Diletant 183:c7a9c309086c 1494 hashParamTable[383].ref = &device.plcs.reset.down.settings.environment.trigger[0];
Diletant 183:c7a9c309086c 1495 hashParamTable[383].size = sizeof(device.plcs.reset.down.settings.environment.trigger[0]);
Diletant 183:c7a9c309086c 1496 hashParamTable[384].hash = 0x6a1f9ca5;
Diletant 183:c7a9c309086c 1497 hashParamTable[384].ref = &device.dither.frequency.settings.transfer.correction[8];
Diletant 183:c7a9c309086c 1498 hashParamTable[384].size = sizeof(device.dither.frequency.settings.transfer.correction[8]);
Diletant 183:c7a9c309086c 1499 hashParamTable[385].hash = 0x6a86dff8;
Diletant 183:c7a9c309086c 1500 hashParamTable[385].ref = &device.counters.dither.state.delta[8];
Diletant 183:c7a9c309086c 1501 hashParamTable[385].size = sizeof(device.counters.dither.state.delta[8]);
Diletant 183:c7a9c309086c 1502 hashParamTable[386].hash = 0x6acb06fc;
Diletant 183:c7a9c309086c 1503 hashParamTable[386].ref = &device.controller.SSP.in[1];
Diletant 183:c7a9c309086c 1504 hashParamTable[386].size = sizeof(device.controller.SSP.in[1]);
Diletant 183:c7a9c309086c 1505 hashParamTable[387].hash = 0x6b1797f2;
Diletant 183:c7a9c309086c 1506 hashParamTable[387].ref = &device.plcs.regulator.settings.transfer.correction[2];
Diletant 183:c7a9c309086c 1507 hashParamTable[387].size = sizeof(device.plcs.regulator.settings.transfer.correction[2]);
Diletant 183:c7a9c309086c 1508 hashParamTable[388].hash = 0x6b586b6e;
Diletant 183:c7a9c309086c 1509 hashParamTable[388].ref = &device.plcs.output.settings.transfer.code[5];
Diletant 183:c7a9c309086c 1510 hashParamTable[388].size = sizeof(device.plcs.output.settings.transfer.code[5]);
Diletant 183:c7a9c309086c 1511 hashParamTable[389].hash = 0x6b65b310;
Diletant 183:c7a9c309086c 1512 hashParamTable[389].ref = &device.ccs.current[0].state.mA;
Diletant 183:c7a9c309086c 1513 hashParamTable[389].size = sizeof(device.ccs.current[0].state.mA);
Diletant 183:c7a9c309086c 1514 hashParamTable[390].hash = 0x6b9ad924;
Diletant 183:c7a9c309086c 1515 hashParamTable[390].ref = &device.dither.frequency.settings.transfer.correction[14];
Diletant 183:c7a9c309086c 1516 hashParamTable[390].size = sizeof(device.dither.frequency.settings.transfer.correction[14]);
Diletant 183:c7a9c309086c 1517 hashParamTable[391].hash = 0x6bd1634b;
Diletant 183:c7a9c309086c 1518 hashParamTable[391].ref = &device.counters.dither.state.delta[26];
Diletant 183:c7a9c309086c 1519 hashParamTable[391].size = sizeof(device.counters.dither.state.delta[26]);
Diletant 183:c7a9c309086c 1520 hashParamTable[392].hash = 0x6be0016;
Diletant 183:c7a9c309086c 1521 hashParamTable[392].ref = &device.dither.amplitude.settings.transfer.correction[6];
Diletant 183:c7a9c309086c 1522 hashParamTable[392].size = sizeof(device.dither.amplitude.settings.transfer.correction[6]);
Diletant 183:c7a9c309086c 1523 hashParamTable[393].hash = 0x6c48cd09;
Diletant 183:c7a9c309086c 1524 hashParamTable[393].ref = &device.plcs.reset.state.countdown;
Diletant 183:c7a9c309086c 1525 hashParamTable[393].size = sizeof(device.plcs.reset.state.countdown);
Diletant 183:c7a9c309086c 1526 hashParamTable[394].hash = 0x6c5c4053;
Diletant 183:c7a9c309086c 1527 hashParamTable[394].ref = &device.plcs.feedback.settings.transfer.normalized[5];
Diletant 183:c7a9c309086c 1528 hashParamTable[394].size = sizeof(device.plcs.feedback.settings.transfer.normalized[5]);
Diletant 183:c7a9c309086c 1529 hashParamTable[395].hash = 0x6cb0982;
Diletant 183:c7a9c309086c 1530 hashParamTable[395].ref = &device.controller.I2C.state.buffer[5];
Diletant 183:c7a9c309086c 1531 hashParamTable[395].size = sizeof(device.controller.I2C.state.buffer[5]);
Diletant 183:c7a9c309086c 1532 hashParamTable[396].hash = 0x6cd4ca69;
Diletant 183:c7a9c309086c 1533 hashParamTable[396].ref = &device.isacs.regulator.settings.transfer.correction[4];
Diletant 183:c7a9c309086c 1534 hashParamTable[396].size = sizeof(device.isacs.regulator.settings.transfer.correction[4]);
Diletant 183:c7a9c309086c 1535 hashParamTable[397].hash = 0x6ce82940;
Diletant 183:c7a9c309086c 1536 hashParamTable[397].ref = &device.dither.amplitude.state.error;
Diletant 183:c7a9c309086c 1537 hashParamTable[397].size = sizeof(device.dither.amplitude.state.error);
Diletant 183:c7a9c309086c 1538 hashParamTable[398].hash = 0x6e21e428;
Diletant 183:c7a9c309086c 1539 hashParamTable[398].ref = &device.plcs.reset.down.settings.environment.trigger[11];
Diletant 183:c7a9c309086c 1540 hashParamTable[398].size = sizeof(device.plcs.reset.down.settings.environment.trigger[11]);
Diletant 183:c7a9c309086c 1541 hashParamTable[399].hash = 0x6e6da5dd;
Diletant 183:c7a9c309086c 1542 hashParamTable[399].ref = &device.dither.detector.settings.transfer.raw[12];
Diletant 183:c7a9c309086c 1543 hashParamTable[399].size = sizeof(device.dither.detector.settings.transfer.raw[12]);
Diletant 183:c7a9c309086c 1544 hashParamTable[400].hash = 0x6e881ccf;
Diletant 183:c7a9c309086c 1545 hashParamTable[400].ref = &device.dither.frequency.state.error;
Diletant 183:c7a9c309086c 1546 hashParamTable[400].size = sizeof(device.dither.frequency.state.error);
Diletant 183:c7a9c309086c 1547 hashParamTable[401].hash = 0x6eeca6bc;
Diletant 183:c7a9c309086c 1548 hashParamTable[401].ref = &device.dither.detector.settings.transfer.restored[12];
Diletant 183:c7a9c309086c 1549 hashParamTable[401].size = sizeof(device.dither.detector.settings.transfer.restored[12]);
Diletant 183:c7a9c309086c 1550 hashParamTable[402].hash = 0x6f0c7879;
Diletant 183:c7a9c309086c 1551 hashParamTable[402].ref = &device.plcs.feedback.settings.transfer.normalized[11];
Diletant 183:c7a9c309086c 1552 hashParamTable[402].size = sizeof(device.plcs.feedback.settings.transfer.normalized[11]);
Diletant 183:c7a9c309086c 1553 hashParamTable[403].hash = 0x6f40ddd5;
Diletant 183:c7a9c309086c 1554 hashParamTable[403].ref = &device.plcs.reset.down.settings.environment.target[6];
Diletant 183:c7a9c309086c 1555 hashParamTable[403].size = sizeof(device.plcs.reset.down.settings.environment.target[6]);
Diletant 183:c7a9c309086c 1556 hashParamTable[404].hash = 0x6f9fab73;
Diletant 183:c7a9c309086c 1557 hashParamTable[404].ref = &device.dither.amplitude.settings.transfer.error[11];
Diletant 183:c7a9c309086c 1558 hashParamTable[404].size = sizeof(device.dither.amplitude.settings.transfer.error[11]);
Diletant 183:c7a9c309086c 1559 hashParamTable[405].hash = 0x6fdf3139;
Diletant 183:c7a9c309086c 1560 hashParamTable[405].ref = &device.isacs.input.settings.transfer.V[12];
Diletant 183:c7a9c309086c 1561 hashParamTable[405].size = sizeof(device.isacs.input.settings.transfer.V[12]);
Diletant 183:c7a9c309086c 1562 hashParamTable[406].hash = 0x6fe2212f;
Diletant 183:c7a9c309086c 1563 hashParamTable[406].ref = &device.plcs.reset.up.settings.environment.temperature[10];
Diletant 183:c7a9c309086c 1564 hashParamTable[406].size = sizeof(device.plcs.reset.up.settings.environment.temperature[10]);
Diletant 183:c7a9c309086c 1565 hashParamTable[407].hash = 0x7046f66f;
Diletant 183:c7a9c309086c 1566 hashParamTable[407].ref = &device.isacs.input.settings.transfer.V[3];
Diletant 183:c7a9c309086c 1567 hashParamTable[407].size = sizeof(device.isacs.input.settings.transfer.V[3]);
Diletant 183:c7a9c309086c 1568 hashParamTable[408].hash = 0x7065ef5a;
Diletant 183:c7a9c309086c 1569 hashParamTable[408].ref = &device.plcs.reset.up.settings.environment.trigger[2];
Diletant 183:c7a9c309086c 1570 hashParamTable[408].size = sizeof(device.plcs.reset.up.settings.environment.trigger[2]);
Diletant 183:c7a9c309086c 1571 hashParamTable[409].hash = 0x708cec53;
Diletant 183:c7a9c309086c 1572 hashParamTable[409].ref = &device.counters.dither.state.delta[17];
Diletant 183:c7a9c309086c 1573 hashParamTable[409].size = sizeof(device.counters.dither.state.delta[17]);
Diletant 183:c7a9c309086c 1574 hashParamTable[410].hash = 0x70b91eb8;
Diletant 183:c7a9c309086c 1575 hashParamTable[410].ref = &device.dither.detector.settings.filter.factor[2];
Diletant 183:c7a9c309086c 1576 hashParamTable[410].size = sizeof(device.dither.detector.settings.filter.factor[2]);
Diletant 183:c7a9c309086c 1577 hashParamTable[411].hash = 0x70c12b2;
Diletant 183:c7a9c309086c 1578 hashParamTable[411].ref = &device.dither.pulse.settings.min;
Diletant 183:c7a9c309086c 1579 hashParamTable[411].size = sizeof(device.dither.pulse.settings.min);
Diletant 183:c7a9c309086c 1580 hashParamTable[412].hash = 0x70ddcca4;
Diletant 183:c7a9c309086c 1581 hashParamTable[412].ref = &device.plcs.reset.down.settings.environment.trigger[1];
Diletant 183:c7a9c309086c 1582 hashParamTable[412].size = sizeof(device.plcs.reset.down.settings.environment.trigger[1]);
Diletant 183:c7a9c309086c 1583 hashParamTable[413].hash = 0x7110b55a;
Diletant 183:c7a9c309086c 1584 hashParamTable[413].ref = &device.plcs.bias.state.raw;
Diletant 183:c7a9c309086c 1585 hashParamTable[413].size = sizeof(device.plcs.bias.state.raw);
Diletant 183:c7a9c309086c 1586 hashParamTable[414].hash = 0x71778c3;
Diletant 183:c7a9c309086c 1587 hashParamTable[414].ref = &device.ccs.current[0].settings.transfer.raw[4];
Diletant 183:c7a9c309086c 1588 hashParamTable[414].size = sizeof(device.ccs.current[0].settings.transfer.raw[4]);
Diletant 183:c7a9c309086c 1589 hashParamTable[415].hash = 0x718f54e1;
Diletant 183:c7a9c309086c 1590 hashParamTable[415].ref = &device.dither.amplitude.settings.transfer.error[5];
Diletant 183:c7a9c309086c 1591 hashParamTable[415].size = sizeof(device.dither.amplitude.settings.transfer.error[5]);
Diletant 183:c7a9c309086c 1592 hashParamTable[416].hash = 0x720ca6b3;
Diletant 183:c7a9c309086c 1593 hashParamTable[416].ref = &device.plcs.regulator.settings.transfer.correction[3];
Diletant 183:c7a9c309086c 1594 hashParamTable[416].size = sizeof(device.plcs.regulator.settings.transfer.correction[3]);
Diletant 183:c7a9c309086c 1595 hashParamTable[417].hash = 0x72435a2f;
Diletant 183:c7a9c309086c 1596 hashParamTable[417].ref = &device.plcs.output.settings.transfer.code[4];
Diletant 183:c7a9c309086c 1597 hashParamTable[417].size = sizeof(device.plcs.output.settings.transfer.code[4]);
Diletant 183:c7a9c309086c 1598 hashParamTable[418].hash = 0x7281e865;
Diletant 183:c7a9c309086c 1599 hashParamTable[418].ref = &device.dither.frequency.settings.transfer.correction[15];
Diletant 183:c7a9c309086c 1600 hashParamTable[418].size = sizeof(device.dither.frequency.settings.transfer.correction[15]);
Diletant 183:c7a9c309086c 1601 hashParamTable[419].hash = 0x72ca520a;
Diletant 183:c7a9c309086c 1602 hashParamTable[419].ref = &device.counters.dither.state.delta[27];
Diletant 183:c7a9c309086c 1603 hashParamTable[419].size = sizeof(device.counters.dither.state.delta[27]);
Diletant 183:c7a9c309086c 1604 hashParamTable[420].hash = 0x7304ade4;
Diletant 183:c7a9c309086c 1605 hashParamTable[420].ref = &device.dither.frequency.settings.transfer.correction[9];
Diletant 183:c7a9c309086c 1606 hashParamTable[420].size = sizeof(device.dither.frequency.settings.transfer.correction[9]);
Diletant 183:c7a9c309086c 1607 hashParamTable[421].hash = 0x739deeb9;
Diletant 183:c7a9c309086c 1608 hashParamTable[421].ref = &device.counters.dither.state.delta[9];
Diletant 183:c7a9c309086c 1609 hashParamTable[421].size = sizeof(device.counters.dither.state.delta[9]);
Diletant 183:c7a9c309086c 1610 hashParamTable[422].hash = 0x73d037bd;
Diletant 183:c7a9c309086c 1611 hashParamTable[422].ref = &device.controller.SSP.in[0];
Diletant 183:c7a9c309086c 1612 hashParamTable[422].size = sizeof(device.controller.SSP.in[0]);
Diletant 183:c7a9c309086c 1613 hashParamTable[423].hash = 0x749c63a6;
Diletant 183:c7a9c309086c 1614 hashParamTable[423].ref = &device.isacs.potentiometers.state.a;
Diletant 183:c7a9c309086c 1615 hashParamTable[423].size = sizeof(device.isacs.potentiometers.state.a);
Diletant 183:c7a9c309086c 1616 hashParamTable[424].hash = 0x74ee6c98;
Diletant 183:c7a9c309086c 1617 hashParamTable[424].ref = &device.dither.frequency.state.enabled;
Diletant 183:c7a9c309086c 1618 hashParamTable[424].size = sizeof(device.dither.frequency.state.enabled);
Diletant 183:c7a9c309086c 1619 hashParamTable[425].hash = 0x75477112;
Diletant 183:c7a9c309086c 1620 hashParamTable[425].ref = &device.plcs.feedback.settings.transfer.normalized[4];
Diletant 183:c7a9c309086c 1621 hashParamTable[425].size = sizeof(device.plcs.feedback.settings.transfer.normalized[4]);
Diletant 183:c7a9c309086c 1622 hashParamTable[426].hash = 0x7561250;
Diletant 183:c7a9c309086c 1623 hashParamTable[426].ref = &device.tss.temperature.settings.transfer.raw[1];
Diletant 183:c7a9c309086c 1624 hashParamTable[426].size = sizeof(device.tss.temperature.settings.transfer.raw[1]);
Diletant 183:c7a9c309086c 1625 hashParamTable[427].hash = 0x756ec723;
Diletant 183:c7a9c309086c 1626 hashParamTable[427].ref = &device.sequencer.output.logic.state.enabled;
Diletant 183:c7a9c309086c 1627 hashParamTable[427].size = sizeof(device.sequencer.output.logic.state.enabled);
Diletant 183:c7a9c309086c 1628 hashParamTable[428].hash = 0x75728f0;
Diletant 183:c7a9c309086c 1629 hashParamTable[428].ref = &device.dither.detector.settings.filter.factor[24];
Diletant 183:c7a9c309086c 1630 hashParamTable[428].size = sizeof(device.dither.detector.settings.filter.factor[24]);
Diletant 183:c7a9c309086c 1631 hashParamTable[429].hash = 0x75bbf441;
Diletant 183:c7a9c309086c 1632 hashParamTable[429].ref = &device.controller.timer[0].state.MCR;
Diletant 183:c7a9c309086c 1633 hashParamTable[429].size = sizeof(device.controller.timer[0].state.MCR);
Diletant 183:c7a9c309086c 1634 hashParamTable[430].hash = 0x75cffb28;
Diletant 183:c7a9c309086c 1635 hashParamTable[430].ref = &device.isacs.regulator.settings.transfer.correction[5];
Diletant 183:c7a9c309086c 1636 hashParamTable[430].size = sizeof(device.isacs.regulator.settings.transfer.correction[5]);
Diletant 183:c7a9c309086c 1637 hashParamTable[431].hash = 0x76174938;
Diletant 183:c7a9c309086c 1638 hashParamTable[431].ref = &device.plcs.feedback.settings.transfer.normalized[10];
Diletant 183:c7a9c309086c 1639 hashParamTable[431].size = sizeof(device.plcs.feedback.settings.transfer.normalized[10]);
Diletant 183:c7a9c309086c 1640 hashParamTable[432].hash = 0x765bec94;
Diletant 183:c7a9c309086c 1641 hashParamTable[432].ref = &device.plcs.reset.down.settings.environment.target[7];
Diletant 183:c7a9c309086c 1642 hashParamTable[432].size = sizeof(device.plcs.reset.down.settings.environment.target[7]);
Diletant 183:c7a9c309086c 1643 hashParamTable[433].hash = 0x76849a32;
Diletant 183:c7a9c309086c 1644 hashParamTable[433].ref = &device.dither.amplitude.settings.transfer.error[10];
Diletant 183:c7a9c309086c 1645 hashParamTable[433].size = sizeof(device.dither.amplitude.settings.transfer.error[10]);
Diletant 183:c7a9c309086c 1646 hashParamTable[434].hash = 0x76c40078;
Diletant 183:c7a9c309086c 1647 hashParamTable[434].ref = &device.isacs.input.settings.transfer.V[13];
Diletant 183:c7a9c309086c 1648 hashParamTable[434].size = sizeof(device.isacs.input.settings.transfer.V[13]);
Diletant 183:c7a9c309086c 1649 hashParamTable[435].hash = 0x76f9106e;
Diletant 183:c7a9c309086c 1650 hashParamTable[435].ref = &device.plcs.reset.up.settings.environment.temperature[11];
Diletant 183:c7a9c309086c 1651 hashParamTable[435].size = sizeof(device.plcs.reset.up.settings.environment.temperature[11]);
Diletant 183:c7a9c309086c 1652 hashParamTable[436].hash = 0x773ad569;
Diletant 183:c7a9c309086c 1653 hashParamTable[436].ref = &device.plcs.reset.down.settings.environment.trigger[10];
Diletant 183:c7a9c309086c 1654 hashParamTable[436].size = sizeof(device.plcs.reset.down.settings.environment.trigger[10]);
Diletant 183:c7a9c309086c 1655 hashParamTable[437].hash = 0x7776949c;
Diletant 183:c7a9c309086c 1656 hashParamTable[437].ref = &device.dither.detector.settings.transfer.raw[13];
Diletant 183:c7a9c309086c 1657 hashParamTable[437].size = sizeof(device.dither.detector.settings.transfer.raw[13]);
Diletant 183:c7a9c309086c 1658 hashParamTable[438].hash = 0x77f797fd;
Diletant 183:c7a9c309086c 1659 hashParamTable[438].ref = &device.dither.detector.settings.transfer.restored[13];
Diletant 183:c7a9c309086c 1660 hashParamTable[438].size = sizeof(device.dither.detector.settings.transfer.restored[13]);
Diletant 183:c7a9c309086c 1661 hashParamTable[439].hash = 0x7805246e;
Diletant 183:c7a9c309086c 1662 hashParamTable[439].ref = &device.sequencer.output.analog.settings.transfer.code[14];
Diletant 183:c7a9c309086c 1663 hashParamTable[439].size = sizeof(device.sequencer.output.analog.settings.transfer.code[14]);
Diletant 183:c7a9c309086c 1664 hashParamTable[440].hash = 0x786662ec;
Diletant 183:c7a9c309086c 1665 hashParamTable[440].ref = &device.dither.detector.settings.filter.factor[11];
Diletant 183:c7a9c309086c 1666 hashParamTable[440].size = sizeof(device.dither.detector.settings.filter.factor[11]);
Diletant 183:c7a9c309086c 1667 hashParamTable[441].hash = 0x78bc99a7;
Diletant 183:c7a9c309086c 1668 hashParamTable[441].ref = &device.dither.detector.state.phase;
Diletant 183:c7a9c309086c 1669 hashParamTable[441].size = sizeof(device.dither.detector.state.phase);
Diletant 183:c7a9c309086c 1670 hashParamTable[442].hash = 0x7982a959;
Diletant 183:c7a9c309086c 1671 hashParamTable[442].ref = &device.isacs.input.settings.transfer.raw[3];
Diletant 183:c7a9c309086c 1672 hashParamTable[442].size = sizeof(device.isacs.input.settings.transfer.raw[3]);
Diletant 183:c7a9c309086c 1673 hashParamTable[443].hash = 0x79c9944a;
Diletant 183:c7a9c309086c 1674 hashParamTable[443].ref = &device.tss.gradient.settings.transfer.celsius[7];
Diletant 183:c7a9c309086c 1675 hashParamTable[443].size = sizeof(device.tss.gradient.settings.transfer.celsius[7]);
Diletant 183:c7a9c309086c 1676 hashParamTable[444].hash = 0x7a20dcb5;
Diletant 183:c7a9c309086c 1677 hashParamTable[444].ref = &device.dither.detector.settings.filter.factor[21];
Diletant 183:c7a9c309086c 1678 hashParamTable[444].size = sizeof(device.dither.detector.settings.filter.factor[21]);
Diletant 183:c7a9c309086c 1679 hashParamTable[445].hash = 0x7a21e615;
Diletant 183:c7a9c309086c 1680 hashParamTable[445].ref = &device.tss.temperature.settings.transfer.raw[4];
Diletant 183:c7a9c309086c 1681 hashParamTable[445].size = sizeof(device.tss.temperature.settings.transfer.raw[4]);
Diletant 183:c7a9c309086c 1682 hashParamTable[446].hash = 0x7a3dbeb9;
Diletant 183:c7a9c309086c 1683 hashParamTable[446].ref = &device.dither.amplitude.settings.enabled;
Diletant 183:c7a9c309086c 1684 hashParamTable[446].size = sizeof(device.dither.amplitude.settings.enabled);
Diletant 183:c7a9c309086c 1685 hashParamTable[447].hash = 0x7a608c86;
Diletant 183:c7a9c309086c 1686 hashParamTable[447].ref = &device.ccs.current[0].settings.transfer.raw[1];
Diletant 183:c7a9c309086c 1687 hashParamTable[447].size = sizeof(device.ccs.current[0].settings.transfer.raw[1]);
Diletant 183:c7a9c309086c 1688 hashParamTable[448].hash = 0x7ab9453b;
Diletant 183:c7a9c309086c 1689 hashParamTable[448].ref = &device.plcs.output.state.sequencer;
Diletant 183:c7a9c309086c 1690 hashParamTable[448].size = sizeof(device.plcs.output.state.sequencer);
Diletant 183:c7a9c309086c 1691 hashParamTable[449].hash = 0x7af265e9;
Diletant 183:c7a9c309086c 1692 hashParamTable[449].ref = &device.isacs.input.settings.transfer.points;
Diletant 183:c7a9c309086c 1693 hashParamTable[449].size = sizeof(device.isacs.input.settings.transfer.points);
Diletant 183:c7a9c309086c 1694 hashParamTable[450].hash = 0x7b023877;
Diletant 183:c7a9c309086c 1695 hashParamTable[450].ref = &device.plcs.reset.up.settings.environment.temperature[5];
Diletant 183:c7a9c309086c 1696 hashParamTable[450].size = sizeof(device.plcs.reset.up.settings.environment.temperature[5]);
Diletant 183:c7a9c309086c 1697 hashParamTable[451].hash = 0x7b54ace5;
Diletant 183:c7a9c309086c 1698 hashParamTable[451].ref = &device.dither.detector.settings.transfer.restored[8];
Diletant 183:c7a9c309086c 1699 hashParamTable[451].size = sizeof(device.dither.detector.settings.transfer.restored[8]);
Diletant 183:c7a9c309086c 1700 hashParamTable[452].hash = 0x7b7df5f9;
Diletant 183:c7a9c309086c 1701 hashParamTable[452].ref = &device.plcs.regulator.settings.transfer.error[15];
Diletant 183:c7a9c309086c 1702 hashParamTable[452].size = sizeof(device.plcs.regulator.settings.transfer.error[15]);
Diletant 183:c7a9c309086c 1703 hashParamTable[453].hash = 0x7b900e27;
Diletant 183:c7a9c309086c 1704 hashParamTable[453].ref = &device.ccs.current[1].state.sum;
Diletant 183:c7a9c309086c 1705 hashParamTable[453].size = sizeof(device.ccs.current[1].state.sum);
Diletant 183:c7a9c309086c 1706 hashParamTable[454].hash = 0x7bbcfdc7;
Diletant 183:c7a9c309086c 1707 hashParamTable[454].ref = &device.controller.I2C.state.buffer[0];
Diletant 183:c7a9c309086c 1708 hashParamTable[454].size = sizeof(device.controller.I2C.state.buffer[0]);
Diletant 183:c7a9c309086c 1709 hashParamTable[455].hash = 0x7bc9f453;
Diletant 183:c7a9c309086c 1710 hashParamTable[455].ref = &device.dither.amplitude.settings.transfer.correction[3];
Diletant 183:c7a9c309086c 1711 hashParamTable[455].size = sizeof(device.dither.amplitude.settings.transfer.correction[3]);
Diletant 183:c7a9c309086c 1712 hashParamTable[456].hash = 0x7be2b682;
Diletant 183:c7a9c309086c 1713 hashParamTable[456].ref = &device.dither.detector.settings.filter.factor[31];
Diletant 183:c7a9c309086c 1714 hashParamTable[456].size = sizeof(device.dither.detector.settings.filter.factor[31]);
Diletant 183:c7a9c309086c 1715 hashParamTable[457].hash = 0x7c1ab6f8;
Diletant 183:c7a9c309086c 1716 hashParamTable[457].ref = &device.isacs.output.settings.transfer.voltage[14];
Diletant 183:c7a9c309086c 1717 hashParamTable[457].size = sizeof(device.isacs.output.settings.transfer.voltage[14]);
Diletant 183:c7a9c309086c 1718 hashParamTable[458].hash = 0x7c412143;
Diletant 183:c7a9c309086c 1719 hashParamTable[458].ref = &device.dither.amplitude.settings.transfer.correction[13];
Diletant 183:c7a9c309086c 1720 hashParamTable[458].size = sizeof(device.dither.amplitude.settings.transfer.correction[13]);
Diletant 183:c7a9c309086c 1721 hashParamTable[459].hash = 0x7c5c10ed;
Diletant 183:c7a9c309086c 1722 hashParamTable[459].ref = &device.plcs.reset.up.settings.environment.target[4];
Diletant 183:c7a9c309086c 1723 hashParamTable[459].size = sizeof(device.plcs.reset.up.settings.environment.target[4]);
Diletant 183:c7a9c309086c 1724 hashParamTable[460].hash = 0x7c91cfb0;
Diletant 183:c7a9c309086c 1725 hashParamTable[460].ref = &device.plcs.feedback.settings.transfer.raw[4];
Diletant 183:c7a9c309086c 1726 hashParamTable[460].size = sizeof(device.plcs.feedback.settings.transfer.raw[4]);
Diletant 183:c7a9c309086c 1727 hashParamTable[461].hash = 0x7c93c8ea;
Diletant 183:c7a9c309086c 1728 hashParamTable[461].ref = &device.plcs.bias.settings.transfer.raw[4];
Diletant 183:c7a9c309086c 1729 hashParamTable[461].size = sizeof(device.plcs.bias.settings.transfer.raw[4]);
Diletant 183:c7a9c309086c 1730 hashParamTable[462].hash = 0x7cf03fc0;
Diletant 183:c7a9c309086c 1731 hashParamTable[462].ref = &device.plcs.feedback.settings.transfer.raw[12];
Diletant 183:c7a9c309086c 1732 hashParamTable[462].size = sizeof(device.plcs.feedback.settings.transfer.raw[12]);
Diletant 183:c7a9c309086c 1733 hashParamTable[463].hash = 0x7cf221da;
Diletant 183:c7a9c309086c 1734 hashParamTable[463].ref = &device.isacs.regulator.settings.transfer.error[1];
Diletant 183:c7a9c309086c 1735 hashParamTable[463].size = sizeof(device.isacs.regulator.settings.transfer.error[1]);
Diletant 183:c7a9c309086c 1736 hashParamTable[464].hash = 0x7d95c657;
Diletant 183:c7a9c309086c 1737 hashParamTable[464].ref = &device.isacs.potentiometers.settings.a;
Diletant 183:c7a9c309086c 1738 hashParamTable[464].size = sizeof(device.isacs.potentiometers.settings.a);
Diletant 183:c7a9c309086c 1739 hashParamTable[465].hash = 0x7da47145;
Diletant 183:c7a9c309086c 1740 hashParamTable[465].ref = &device.plcs.reset.up.settings.environment.duration[9];
Diletant 183:c7a9c309086c 1741 hashParamTable[465].size = sizeof(device.plcs.reset.up.settings.environment.duration[9]);
Diletant 183:c7a9c309086c 1742 hashParamTable[466].hash = 0x7da5766a;
Diletant 183:c7a9c309086c 1743 hashParamTable[466].ref = &device.dither.noise.state.amplitude;
Diletant 183:c7a9c309086c 1744 hashParamTable[466].size = sizeof(device.dither.noise.state.amplitude);
Diletant 183:c7a9c309086c 1745 hashParamTable[467].hash = 0x7dcfd12a;
Diletant 183:c7a9c309086c 1746 hashParamTable[467].ref = &device.dither.detector.settings.transfer.raw[7];
Diletant 183:c7a9c309086c 1747 hashParamTable[467].size = sizeof(device.dither.detector.settings.transfer.raw[7]);
Diletant 183:c7a9c309086c 1748 hashParamTable[468].hash = 0x7e454c94;
Diletant 183:c7a9c309086c 1749 hashParamTable[468].ref = &device.plcs.reset.down.settings.environment.target[13];
Diletant 183:c7a9c309086c 1750 hashParamTable[468].size = sizeof(device.plcs.reset.down.settings.environment.target[13]);
Diletant 183:c7a9c309086c 1751 hashParamTable[469].hash = 0x7e58f1a4;
Diletant 183:c7a9c309086c 1752 hashParamTable[469].ref = &device.user.port.state.baud;
Diletant 183:c7a9c309086c 1753 hashParamTable[469].size = sizeof(device.user.port.state.baud);
Diletant 183:c7a9c309086c 1754 hashParamTable[470].hash = 0x7efd6f6a;
Diletant 183:c7a9c309086c 1755 hashParamTable[470].ref = &device.plcs.reset.up.settings.environment.target[10];
Diletant 183:c7a9c309086c 1756 hashParamTable[470].size = sizeof(device.plcs.reset.up.settings.environment.target[10]);
Diletant 183:c7a9c309086c 1757 hashParamTable[471].hash = 0x7f4645bb;
Diletant 183:c7a9c309086c 1758 hashParamTable[471].ref = &device.dither.cycle.state.pin2;
Diletant 183:c7a9c309086c 1759 hashParamTable[471].size = sizeof(device.dither.cycle.state.pin2);
Diletant 183:c7a9c309086c 1760 hashParamTable[472].hash = 0x7f7b5285;
Diletant 183:c7a9c309086c 1761 hashParamTable[472].ref = &device.isacs.output.settings.transfer.voltage[4];
Diletant 183:c7a9c309086c 1762 hashParamTable[472].size = sizeof(device.isacs.output.settings.transfer.voltage[4]);
Diletant 183:c7a9c309086c 1763 hashParamTable[473].hash = 0x80ede959;
Diletant 183:c7a9c309086c 1764 hashParamTable[473].ref = &device.dither.noise.settings.amplitude;
Diletant 183:c7a9c309086c 1765 hashParamTable[473].size = sizeof(device.dither.noise.settings.amplitude);
Diletant 183:c7a9c309086c 1766 hashParamTable[474].hash = 0x8106b105;
Diletant 183:c7a9c309086c 1767 hashParamTable[474].ref = &device.isacs.regulator.settings.transfer.error[14];
Diletant 183:c7a9c309086c 1768 hashParamTable[474].size = sizeof(device.isacs.regulator.settings.transfer.error[14]);
Diletant 183:c7a9c309086c 1769 hashParamTable[475].hash = 0x81261cd9;
Diletant 183:c7a9c309086c 1770 hashParamTable[475].ref = &device.dither.amplitude.settings.transfer.correction[9];
Diletant 183:c7a9c309086c 1771 hashParamTable[475].size = sizeof(device.dither.amplitude.settings.transfer.correction[9]);
Diletant 183:c7a9c309086c 1772 hashParamTable[476].hash = 0x81bb446f;
Diletant 183:c7a9c309086c 1773 hashParamTable[476].ref = &device.dither.detector.settings.transfer.restored[2];
Diletant 183:c7a9c309086c 1774 hashParamTable[476].size = sizeof(device.dither.detector.settings.transfer.restored[2]);
Diletant 183:c7a9c309086c 1775 hashParamTable[477].hash = 0x8208e177;
Diletant 183:c7a9c309086c 1776 hashParamTable[477].ref = &device.plcs.regulator.settings.enabled;
Diletant 183:c7a9c309086c 1777 hashParamTable[477].size = sizeof(device.plcs.regulator.settings.enabled);
Diletant 183:c7a9c309086c 1778 hashParamTable[478].hash = 0x82222d8a;
Diletant 183:c7a9c309086c 1779 hashParamTable[478].ref = &device.plcs.output.settings.transfer.voltage[5];
Diletant 183:c7a9c309086c 1780 hashParamTable[478].size = sizeof(device.plcs.output.settings.transfer.voltage[5]);
Diletant 183:c7a9c309086c 1781 hashParamTable[479].hash = 0x8249508a;
Diletant 183:c7a9c309086c 1782 hashParamTable[479].ref = &device.sequencer.sampler.settings.sequence[44];
Diletant 183:c7a9c309086c 1783 hashParamTable[479].size = sizeof(device.sequencer.sampler.settings.sequence[44]);
Diletant 183:c7a9c309086c 1784 hashParamTable[480].hash = 0x82bd8086;
Diletant 183:c7a9c309086c 1785 hashParamTable[480].ref = &device.plcs.bias.state.average;
Diletant 183:c7a9c309086c 1786 hashParamTable[480].size = sizeof(device.plcs.bias.state.average);
Diletant 183:c7a9c309086c 1787 hashParamTable[481].hash = 0x82e988b8;
Diletant 183:c7a9c309086c 1788 hashParamTable[481].ref = &device.ccs.current[0].settings.transfer.mA[15];
Diletant 183:c7a9c309086c 1789 hashParamTable[481].size = sizeof(device.ccs.current[0].settings.transfer.mA[15]);
Diletant 183:c7a9c309086c 1790 hashParamTable[482].hash = 0x82f85228;
Diletant 183:c7a9c309086c 1791 hashParamTable[482].ref = &device.controller.uart[1].state.FCR;
Diletant 183:c7a9c309086c 1792 hashParamTable[482].size = sizeof(device.controller.uart[1].state.FCR);
Diletant 183:c7a9c309086c 1793 hashParamTable[483].hash = 0x8308557;
Diletant 183:c7a9c309086c 1794 hashParamTable[483].ref = &device.plcs.feedback.settings.transfer.normalized[1];
Diletant 183:c7a9c309086c 1795 hashParamTable[483].size = sizeof(device.plcs.feedback.settings.transfer.normalized[1]);
Diletant 183:c7a9c309086c 1796 hashParamTable[484].hash = 0x83138da9;
Diletant 183:c7a9c309086c 1797 hashParamTable[484].ref = &device.plcs.reset.down.settings.environment.duration[12];
Diletant 183:c7a9c309086c 1798 hashParamTable[484].size = sizeof(device.plcs.reset.down.settings.environment.duration[12]);
Diletant 183:c7a9c309086c 1799 hashParamTable[485].hash = 0x836d41d3;
Diletant 183:c7a9c309086c 1800 hashParamTable[485].ref = &device.isacs.input.settings.transfer.raw[9];
Diletant 183:c7a9c309086c 1801 hashParamTable[485].size = sizeof(device.isacs.input.settings.transfer.raw[9]);
Diletant 183:c7a9c309086c 1802 hashParamTable[486].hash = 0x83843183;
Diletant 183:c7a9c309086c 1803 hashParamTable[486].ref = &device.user.address;
Diletant 183:c7a9c309086c 1804 hashParamTable[486].size = sizeof(device.user.address);
Diletant 183:c7a9c309086c 1805 hashParamTable[487].hash = 0x838b3abd;
Diletant 183:c7a9c309086c 1806 hashParamTable[487].ref = &device.sequencer.sampler.settings.sequence[54];
Diletant 183:c7a9c309086c 1807 hashParamTable[487].size = sizeof(device.sequencer.sampler.settings.sequence[54]);
Diletant 183:c7a9c309086c 1808 hashParamTable[488].hash = 0x83ef10b5;
Diletant 183:c7a9c309086c 1809 hashParamTable[488].ref = &device.isacs.regulator.settings.transfer.correction[12];
Diletant 183:c7a9c309086c 1810 hashParamTable[488].size = sizeof(device.isacs.regulator.settings.transfer.correction[12]);
Diletant 183:c7a9c309086c 1811 hashParamTable[489].hash = 0x84829261;
Diletant 183:c7a9c309086c 1812 hashParamTable[489].ref = &device.sequencer.sampler.settings.sequence[14];
Diletant 183:c7a9c309086c 1813 hashParamTable[489].size = sizeof(device.sequencer.sampler.settings.sequence[14]);
Diletant 183:c7a9c309086c 1814 hashParamTable[490].hash = 0x856465c0;
Diletant 183:c7a9c309086c 1815 hashParamTable[490].ref = &device.dither.noise.state.enabled;
Diletant 183:c7a9c309086c 1816 hashParamTable[490].size = sizeof(device.dither.noise.state.enabled);
Diletant 183:c7a9c309086c 1817 hashParamTable[491].hash = 0x85aa81dc;
Diletant 183:c7a9c309086c 1818 hashParamTable[491].ref = &device.dither.frequency.settings.transfer.error[1];
Diletant 183:c7a9c309086c 1819 hashParamTable[491].size = sizeof(device.dither.frequency.settings.transfer.error[1]);
Diletant 183:c7a9c309086c 1820 hashParamTable[492].hash = 0x85ded725;
Diletant 183:c7a9c309086c 1821 hashParamTable[492].ref = &device.controller.timer[0].state.MR0;
Diletant 183:c7a9c309086c 1822 hashParamTable[492].size = sizeof(device.controller.timer[0].state.MR0);
Diletant 183:c7a9c309086c 1823 hashParamTable[493].hash = 0x85e836d8;
Diletant 183:c7a9c309086c 1824 hashParamTable[493].ref = &device.tss.temperature.settings.transfer.celsius[10];
Diletant 183:c7a9c309086c 1825 hashParamTable[493].size = sizeof(device.tss.temperature.settings.transfer.celsius[10]);
Diletant 183:c7a9c309086c 1826 hashParamTable[494].hash = 0x85f1a258;
Diletant 183:c7a9c309086c 1827 hashParamTable[494].ref = &device.sequencer.sampler.settings.sequence[4];
Diletant 183:c7a9c309086c 1828 hashParamTable[494].size = sizeof(device.sequencer.sampler.settings.sequence[4]);
Diletant 183:c7a9c309086c 1829 hashParamTable[495].hash = 0x865e7929;
Diletant 183:c7a9c309086c 1830 hashParamTable[495].ref = &device.isacs.output.settings.transfer.code[5];
Diletant 183:c7a9c309086c 1831 hashParamTable[495].size = sizeof(device.isacs.output.settings.transfer.code[5]);
Diletant 183:c7a9c309086c 1832 hashParamTable[496].hash = 0x868be0d4;
Diletant 183:c7a9c309086c 1833 hashParamTable[496].ref = &device.sequencer.output.analog.settings.transfer.voltage[15];
Diletant 183:c7a9c309086c 1834 hashParamTable[496].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[15]);
Diletant 183:c7a9c309086c 1835 hashParamTable[497].hash = 0x86c42c38;
Diletant 183:c7a9c309086c 1836 hashParamTable[497].ref = &device.sequencer.sampler.settings.sequence[24];
Diletant 183:c7a9c309086c 1837 hashParamTable[497].size = sizeof(device.sequencer.sampler.settings.sequence[24]);
Diletant 183:c7a9c309086c 1838 hashParamTable[498].hash = 0x8706460f;
Diletant 183:c7a9c309086c 1839 hashParamTable[498].ref = &device.sequencer.sampler.settings.sequence[34];
Diletant 183:c7a9c309086c 1840 hashParamTable[498].size = sizeof(device.sequencer.sampler.settings.sequence[34]);
Diletant 183:c7a9c309086c 1841 hashParamTable[499].hash = 0x874b99cf;
Diletant 183:c7a9c309086c 1842 hashParamTable[499].ref = &device.plcs.reset.up.settings.environment.duration[3];
Diletant 183:c7a9c309086c 1843 hashParamTable[499].size = sizeof(device.plcs.reset.up.settings.environment.duration[3]);
Diletant 183:c7a9c309086c 1844 hashParamTable[500].hash = 0x87501be1;
Diletant 183:c7a9c309086c 1845 hashParamTable[500].ref = &device.sequencer.output.analog.state.voltage;
Diletant 183:c7a9c309086c 1846 hashParamTable[500].size = sizeof(device.sequencer.output.analog.state.voltage);
Diletant 183:c7a9c309086c 1847 hashParamTable[501].hash = 0x87fa4992;
Diletant 183:c7a9c309086c 1848 hashParamTable[501].ref = &device.plcs.output.settings.start.voltage;
Diletant 183:c7a9c309086c 1849 hashParamTable[501].size = sizeof(device.plcs.output.settings.start.voltage);
Diletant 183:c7a9c309086c 1850 hashParamTable[502].hash = 0x88e34e39;
Diletant 183:c7a9c309086c 1851 hashParamTable[502].ref = &device.plcs.regulator.settings.transfer.correction[9];
Diletant 183:c7a9c309086c 1852 hashParamTable[502].size = sizeof(device.plcs.regulator.settings.transfer.correction[9]);
Diletant 183:c7a9c309086c 1853 hashParamTable[503].hash = 0x8952e728;
Diletant 183:c7a9c309086c 1854 hashParamTable[503].ref = &device.plcs.reset.down.settings.environment.duration[5];
Diletant 183:c7a9c309086c 1855 hashParamTable[503].size = sizeof(device.plcs.reset.down.settings.environment.duration[5]);
Diletant 183:c7a9c309086c 1856 hashParamTable[504].hash = 0x89720633;
Diletant 183:c7a9c309086c 1857 hashParamTable[504].ref = &device.counters.dither.state.delta[3];
Diletant 183:c7a9c309086c 1858 hashParamTable[504].size = sizeof(device.counters.dither.state.delta[3]);
Diletant 183:c7a9c309086c 1859 hashParamTable[505].hash = 0x897d7a0e;
Diletant 183:c7a9c309086c 1860 hashParamTable[505].ref = &device.ccs.current[0].settings.transfer.raw[13];
Diletant 183:c7a9c309086c 1861 hashParamTable[505].size = sizeof(device.ccs.current[0].settings.transfer.raw[13]);
Diletant 183:c7a9c309086c 1862 hashParamTable[506].hash = 0x89eb456e;
Diletant 183:c7a9c309086c 1863 hashParamTable[506].ref = &device.dither.frequency.settings.transfer.correction[3];
Diletant 183:c7a9c309086c 1864 hashParamTable[506].size = sizeof(device.dither.frequency.settings.transfer.correction[3]);
Diletant 183:c7a9c309086c 1865 hashParamTable[507].hash = 0x89ef30ef;
Diletant 183:c7a9c309086c 1866 hashParamTable[507].ref = &device.tss.gradient.settings.transfer.raw[13];
Diletant 183:c7a9c309086c 1867 hashParamTable[507].size = sizeof(device.tss.gradient.settings.transfer.raw[13]);
Diletant 183:c7a9c309086c 1868 hashParamTable[508].hash = 0x89f65d25;
Diletant 183:c7a9c309086c 1869 hashParamTable[508].ref = &device.plcs.output.settings.transfer.voltage[10];
Diletant 183:c7a9c309086c 1870 hashParamTable[508].size = sizeof(device.plcs.output.settings.transfer.voltage[10]);
Diletant 183:c7a9c309086c 1871 hashParamTable[509].hash = 0x89f9b381;
Diletant 183:c7a9c309086c 1872 hashParamTable[509].ref = &device.sequencer.output.analog.settings.transfer.code[6];
Diletant 183:c7a9c309086c 1873 hashParamTable[509].size = sizeof(device.sequencer.output.analog.settings.transfer.code[6]);
Diletant 183:c7a9c309086c 1874 hashParamTable[510].hash = 0x8a18a1ef;
Diletant 183:c7a9c309086c 1875 hashParamTable[510].ref = &device.plcs.regulator.settings.transfer.correction[15];
Diletant 183:c7a9c309086c 1876 hashParamTable[510].size = sizeof(device.plcs.regulator.settings.transfer.correction[15]);
Diletant 183:c7a9c309086c 1877 hashParamTable[511].hash = 0x8a56f632;
Diletant 183:c7a9c309086c 1878 hashParamTable[511].ref = &device.dither.detector.settings.filter.factor[8];
Diletant 183:c7a9c309086c 1879 hashParamTable[511].size = sizeof(device.dither.detector.settings.filter.factor[8]);
Diletant 183:c7a9c309086c 1880 hashParamTable[512].hash = 0x8a7419fa;
Diletant 183:c7a9c309086c 1881 hashParamTable[512].ref = &device.ccs.current[0].settings.transfer.mA[7];
Diletant 183:c7a9c309086c 1882 hashParamTable[512].size = sizeof(device.ccs.current[0].settings.transfer.mA[7]);
Diletant 183:c7a9c309086c 1883 hashParamTable[513].hash = 0x8a7802a2;
Diletant 183:c7a9c309086c 1884 hashParamTable[513].ref = &device.counters.dither.state.displacement;
Diletant 183:c7a9c309086c 1885 hashParamTable[513].size = sizeof(device.counters.dither.state.displacement);
Diletant 183:c7a9c309086c 1886 hashParamTable[514].hash = 0x8a85b31;
Diletant 183:c7a9c309086c 1887 hashParamTable[514].ref = &device.plcs.bias.settings.transfer.normalized[12];
Diletant 183:c7a9c309086c 1888 hashParamTable[514].size = sizeof(device.plcs.bias.settings.transfer.normalized[12]);
Diletant 183:c7a9c309086c 1889 hashParamTable[515].hash = 0x8a8a07d0;
Diletant 183:c7a9c309086c 1890 hashParamTable[515].ref = &device.plcs.reset.up.settings.environment.trigger[8];
Diletant 183:c7a9c309086c 1891 hashParamTable[515].size = sizeof(device.plcs.reset.up.settings.environment.trigger[8]);
Diletant 183:c7a9c309086c 1892 hashParamTable[516].hash = 0x8aa91ee5;
Diletant 183:c7a9c309086c 1893 hashParamTable[516].ref = &device.isacs.input.settings.transfer.V[9];
Diletant 183:c7a9c309086c 1894 hashParamTable[516].size = sizeof(device.isacs.input.settings.transfer.V[9]);
Diletant 183:c7a9c309086c 1895 hashParamTable[517].hash = 0x8b41333c;
Diletant 183:c7a9c309086c 1896 hashParamTable[517].ref = &device.isacs.input.settings.transfer.raw[11];
Diletant 183:c7a9c309086c 1897 hashParamTable[517].size = sizeof(device.isacs.input.settings.transfer.raw[11]);
Diletant 183:c7a9c309086c 1898 hashParamTable[518].hash = 0x8b4e56e3;
Diletant 183:c7a9c309086c 1899 hashParamTable[518].ref = &device.isacs.output.settings.transfer.points;
Diletant 183:c7a9c309086c 1900 hashParamTable[518].size = sizeof(device.isacs.output.settings.transfer.points);
Diletant 183:c7a9c309086c 1901 hashParamTable[519].hash = 0x8b80f6d;
Diletant 183:c7a9c309086c 1902 hashParamTable[519].ref = &device.isacs.regulator.settings.transfer.correction[0];
Diletant 183:c7a9c309086c 1903 hashParamTable[519].size = sizeof(device.isacs.regulator.settings.transfer.correction[0]);
Diletant 183:c7a9c309086c 1904 hashParamTable[520].hash = 0x8bc8fd3c;
Diletant 183:c7a9c309086c 1905 hashParamTable[520].ref = &device.plcs.reset.up.settings.environment.duration[10];
Diletant 183:c7a9c309086c 1906 hashParamTable[520].size = sizeof(device.plcs.reset.up.settings.environment.duration[10]);
Diletant 183:c7a9c309086c 1907 hashParamTable[521].hash = 0x8bec977c;
Diletant 183:c7a9c309086c 1908 hashParamTable[521].ref = &device.controller.uart[1].state.DLM;
Diletant 183:c7a9c309086c 1909 hashParamTable[521].size = sizeof(device.controller.uart[1].state.DLM);
Diletant 183:c7a9c309086c 1910 hashParamTable[522].hash = 0x8c06eb3b;
Diletant 183:c7a9c309086c 1911 hashParamTable[522].ref = &device.dither.noise.settings.enabled;
Diletant 183:c7a9c309086c 1912 hashParamTable[522].size = sizeof(device.dither.noise.settings.enabled);
Diletant 183:c7a9c309086c 1913 hashParamTable[523].hash = 0x8c3c9572;
Diletant 183:c7a9c309086c 1914 hashParamTable[523].ref = &device.plcs.bias.settings.transfer.normalized[5];
Diletant 183:c7a9c309086c 1915 hashParamTable[523].size = sizeof(device.plcs.bias.settings.transfer.normalized[5]);
Diletant 183:c7a9c309086c 1916 hashParamTable[524].hash = 0x8c46a882;
Diletant 183:c7a9c309086c 1917 hashParamTable[524].ref = &device.tss.gradient.settings.transfer.raw[5];
Diletant 183:c7a9c309086c 1918 hashParamTable[524].size = sizeof(device.tss.gradient.settings.transfer.raw[5]);
Diletant 183:c7a9c309086c 1919 hashParamTable[525].hash = 0x8cfb64a5;
Diletant 183:c7a9c309086c 1920 hashParamTable[525].ref = &device.plcs.regulator.settings.transfer.error[4];
Diletant 183:c7a9c309086c 1921 hashParamTable[525].size = sizeof(device.plcs.regulator.settings.transfer.error[4]);
Diletant 183:c7a9c309086c 1922 hashParamTable[526].hash = 0x8d38f744;
Diletant 183:c7a9c309086c 1923 hashParamTable[526].ref = &device.plcs.reset.down.settings.environment.temperature[5];
Diletant 183:c7a9c309086c 1924 hashParamTable[526].size = sizeof(device.plcs.reset.down.settings.environment.temperature[5]);
Diletant 183:c7a9c309086c 1925 hashParamTable[527].hash = 0x8e7b9ff;
Diletant 183:c7a9c309086c 1926 hashParamTable[527].ref = &device.tss.temperature.settings.transfer.celsius[9];
Diletant 183:c7a9c309086c 1927 hashParamTable[527].size = sizeof(device.tss.temperature.settings.transfer.celsius[9]);
Diletant 183:c7a9c309086c 1928 hashParamTable[528].hash = 0x8eeac83c;
Diletant 183:c7a9c309086c 1929 hashParamTable[528].ref = &device.counters.zero.state.b;
Diletant 183:c7a9c309086c 1930 hashParamTable[528].size = sizeof(device.counters.zero.state.b);
Diletant 183:c7a9c309086c 1931 hashParamTable[529].hash = 0x8f0c1c4c;
Diletant 183:c7a9c309086c 1932 hashParamTable[529].ref = &device.sequencer.output.analog.settings.transfer.voltage[5];
Diletant 183:c7a9c309086c 1933 hashParamTable[529].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[5]);
Diletant 183:c7a9c309086c 1934 hashParamTable[530].hash = 0x8f6fd7fe;
Diletant 183:c7a9c309086c 1935 hashParamTable[530].ref = &device.controller.uart[1].state.LCR;
Diletant 183:c7a9c309086c 1936 hashParamTable[530].size = sizeof(device.controller.uart[1].state.LCR);
Diletant 183:c7a9c309086c 1937 hashParamTable[531].hash = 0x8f7fa530;
Diletant 183:c7a9c309086c 1938 hashParamTable[531].ref = &device.tss.temperature.settings.transfer.celsius[6];
Diletant 183:c7a9c309086c 1939 hashParamTable[531].size = sizeof(device.tss.temperature.settings.transfer.celsius[6]);
Diletant 183:c7a9c309086c 1940 hashParamTable[532].hash = 0x9049d669;
Diletant 183:c7a9c309086c 1941 hashParamTable[532].ref = &device.plcs.reset.down.settings.environment.duration[4];
Diletant 183:c7a9c309086c 1942 hashParamTable[532].size = sizeof(device.plcs.reset.down.settings.environment.duration[4]);
Diletant 183:c7a9c309086c 1943 hashParamTable[533].hash = 0x90664b4f;
Diletant 183:c7a9c309086c 1944 hashParamTable[533].ref = &device.ccs.current[0].settings.transfer.raw[12];
Diletant 183:c7a9c309086c 1945 hashParamTable[533].size = sizeof(device.ccs.current[0].settings.transfer.raw[12]);
Diletant 183:c7a9c309086c 1946 hashParamTable[534].hash = 0x90693772;
Diletant 183:c7a9c309086c 1947 hashParamTable[534].ref = &device.counters.dither.state.delta[2];
Diletant 183:c7a9c309086c 1948 hashParamTable[534].size = sizeof(device.counters.dither.state.delta[2]);
Diletant 183:c7a9c309086c 1949 hashParamTable[535].hash = 0x90a6bcbd;
Diletant 183:c7a9c309086c 1950 hashParamTable[535].ref = &device.isacs.regulator.settings.transfer.points;
Diletant 183:c7a9c309086c 1951 hashParamTable[535].size = sizeof(device.isacs.regulator.settings.transfer.points);
Diletant 183:c7a9c309086c 1952 hashParamTable[536].hash = 0x90e282c0;
Diletant 183:c7a9c309086c 1953 hashParamTable[536].ref = &device.sequencer.output.analog.settings.transfer.code[7];
Diletant 183:c7a9c309086c 1954 hashParamTable[536].size = sizeof(device.sequencer.output.analog.settings.transfer.code[7]);
Diletant 183:c7a9c309086c 1955 hashParamTable[537].hash = 0x90ed6c64;
Diletant 183:c7a9c309086c 1956 hashParamTable[537].ref = &device.plcs.output.settings.transfer.voltage[11];
Diletant 183:c7a9c309086c 1957 hashParamTable[537].size = sizeof(device.plcs.output.settings.transfer.voltage[11]);
Diletant 183:c7a9c309086c 1958 hashParamTable[538].hash = 0x90f0742f;
Diletant 183:c7a9c309086c 1959 hashParamTable[538].ref = &device.dither.frequency.settings.transfer.correction[2];
Diletant 183:c7a9c309086c 1960 hashParamTable[538].size = sizeof(device.dither.frequency.settings.transfer.correction[2]);
Diletant 183:c7a9c309086c 1961 hashParamTable[539].hash = 0x90f401ae;
Diletant 183:c7a9c309086c 1962 hashParamTable[539].ref = &device.tss.gradient.settings.transfer.raw[12];
Diletant 183:c7a9c309086c 1963 hashParamTable[539].size = sizeof(device.tss.gradient.settings.transfer.raw[12]);
Diletant 183:c7a9c309086c 1964 hashParamTable[540].hash = 0x91f87f78;
Diletant 183:c7a9c309086c 1965 hashParamTable[540].ref = &device.plcs.regulator.settings.transfer.correction[8];
Diletant 183:c7a9c309086c 1966 hashParamTable[540].size = sizeof(device.plcs.regulator.settings.transfer.correction[8]);
Diletant 183:c7a9c309086c 1967 hashParamTable[541].hash = 0x925a027d;
Diletant 183:c7a9c309086c 1968 hashParamTable[541].ref = &device.isacs.input.settings.transfer.raw[10];
Diletant 183:c7a9c309086c 1969 hashParamTable[541].size = sizeof(device.isacs.input.settings.transfer.raw[10]);
Diletant 183:c7a9c309086c 1970 hashParamTable[542].hash = 0x92b3ac84;
Diletant 183:c7a9c309086c 1971 hashParamTable[542].ref = &device.plcs.reference.state.sequencer;
Diletant 183:c7a9c309086c 1972 hashParamTable[542].size = sizeof(device.plcs.reference.state.sequencer);
Diletant 183:c7a9c309086c 1973 hashParamTable[543].hash = 0x92d3cc7d;
Diletant 183:c7a9c309086c 1974 hashParamTable[543].ref = &device.plcs.reset.up.settings.environment.duration[11];
Diletant 183:c7a9c309086c 1975 hashParamTable[543].size = sizeof(device.plcs.reset.up.settings.environment.duration[11]);
Diletant 183:c7a9c309086c 1976 hashParamTable[544].hash = 0x930390ae;
Diletant 183:c7a9c309086c 1977 hashParamTable[544].ref = &device.plcs.regulator.settings.transfer.correction[14];
Diletant 183:c7a9c309086c 1978 hashParamTable[544].size = sizeof(device.plcs.regulator.settings.transfer.correction[14]);
Diletant 183:c7a9c309086c 1979 hashParamTable[545].hash = 0x930b3fec;
Diletant 183:c7a9c309086c 1980 hashParamTable[545].ref = &device.plcs.feedback.state.voltage;
Diletant 183:c7a9c309086c 1981 hashParamTable[545].size = sizeof(device.plcs.feedback.state.voltage);
Diletant 183:c7a9c309086c 1982 hashParamTable[546].hash = 0x934dc773;
Diletant 183:c7a9c309086c 1983 hashParamTable[546].ref = &device.dither.detector.settings.filter.factor[9];
Diletant 183:c7a9c309086c 1984 hashParamTable[546].size = sizeof(device.dither.detector.settings.filter.factor[9]);
Diletant 183:c7a9c309086c 1985 hashParamTable[547].hash = 0x936f28bb;
Diletant 183:c7a9c309086c 1986 hashParamTable[547].ref = &device.ccs.current[0].settings.transfer.mA[6];
Diletant 183:c7a9c309086c 1987 hashParamTable[547].size = sizeof(device.ccs.current[0].settings.transfer.mA[6]);
Diletant 183:c7a9c309086c 1988 hashParamTable[548].hash = 0x93913691;
Diletant 183:c7a9c309086c 1989 hashParamTable[548].ref = &device.plcs.reset.up.settings.environment.trigger[9];
Diletant 183:c7a9c309086c 1990 hashParamTable[548].size = sizeof(device.plcs.reset.up.settings.environment.trigger[9]);
Diletant 183:c7a9c309086c 1991 hashParamTable[549].hash = 0x93b22fa4;
Diletant 183:c7a9c309086c 1992 hashParamTable[549].ref = &device.isacs.input.settings.transfer.V[8];
Diletant 183:c7a9c309086c 1993 hashParamTable[549].size = sizeof(device.isacs.input.settings.transfer.V[8]);
Diletant 183:c7a9c309086c 1994 hashParamTable[550].hash = 0x9423c605;
Diletant 183:c7a9c309086c 1995 hashParamTable[550].ref = &device.plcs.reset.down.settings.environment.temperature[4];
Diletant 183:c7a9c309086c 1996 hashParamTable[550].size = sizeof(device.plcs.reset.down.settings.environment.temperature[4]);
Diletant 183:c7a9c309086c 1997 hashParamTable[551].hash = 0x94360535;
Diletant 183:c7a9c309086c 1998 hashParamTable[551].ref = &device.isacs.regulator.state.reference;
Diletant 183:c7a9c309086c 1999 hashParamTable[551].size = sizeof(device.isacs.regulator.state.reference);
Diletant 183:c7a9c309086c 2000 hashParamTable[552].hash = 0x9527a433;
Diletant 183:c7a9c309086c 2001 hashParamTable[552].ref = &device.plcs.bias.settings.transfer.normalized[4];
Diletant 183:c7a9c309086c 2002 hashParamTable[552].size = sizeof(device.plcs.bias.settings.transfer.normalized[4]);
Diletant 183:c7a9c309086c 2003 hashParamTable[553].hash = 0x955d99c3;
Diletant 183:c7a9c309086c 2004 hashParamTable[553].ref = &device.tss.gradient.settings.transfer.raw[4];
Diletant 183:c7a9c309086c 2005 hashParamTable[553].size = sizeof(device.tss.gradient.settings.transfer.raw[4]);
Diletant 183:c7a9c309086c 2006 hashParamTable[554].hash = 0x95e055e4;
Diletant 183:c7a9c309086c 2007 hashParamTable[554].ref = &device.plcs.regulator.settings.transfer.error[5];
Diletant 183:c7a9c309086c 2008 hashParamTable[554].size = sizeof(device.plcs.regulator.settings.transfer.error[5]);
Diletant 183:c7a9c309086c 2009 hashParamTable[555].hash = 0x96172d0d;
Diletant 183:c7a9c309086c 2010 hashParamTable[555].ref = &device.sequencer.output.analog.settings.transfer.voltage[4];
Diletant 183:c7a9c309086c 2011 hashParamTable[555].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[4]);
Diletant 183:c7a9c309086c 2012 hashParamTable[556].hash = 0x96649471;
Diletant 183:c7a9c309086c 2013 hashParamTable[556].ref = &device.tss.temperature.settings.transfer.celsius[7];
Diletant 183:c7a9c309086c 2014 hashParamTable[556].size = sizeof(device.tss.temperature.settings.transfer.celsius[7]);
Diletant 183:c7a9c309086c 2015 hashParamTable[557].hash = 0x96921cbb;
Diletant 183:c7a9c309086c 2016 hashParamTable[557].ref = &device.counters.meander.state.a;
Diletant 183:c7a9c309086c 2017 hashParamTable[557].size = sizeof(device.counters.meander.state.a);
Diletant 183:c7a9c309086c 2018 hashParamTable[558].hash = 0x96d795b;
Diletant 183:c7a9c309086c 2019 hashParamTable[558].ref = &device.isacs.regulator.settings.reset.reference;
Diletant 183:c7a9c309086c 2020 hashParamTable[558].size = sizeof(device.isacs.regulator.settings.reset.reference);
Diletant 183:c7a9c309086c 2021 hashParamTable[559].hash = 0x97dea178;
Diletant 183:c7a9c309086c 2022 hashParamTable[559].ref = &device.controller.QEI.state.position;
Diletant 183:c7a9c309086c 2023 hashParamTable[559].size = sizeof(device.controller.QEI.state.position);
Diletant 183:c7a9c309086c 2024 hashParamTable[560].hash = 0x981d8044;
Diletant 183:c7a9c309086c 2025 hashParamTable[560].ref = &device.isacs.regulator.settings.transfer.error[15];
Diletant 183:c7a9c309086c 2026 hashParamTable[560].size = sizeof(device.isacs.regulator.settings.transfer.error[15]);
Diletant 183:c7a9c309086c 2027 hashParamTable[561].hash = 0x983d2d98;
Diletant 183:c7a9c309086c 2028 hashParamTable[561].ref = &device.dither.amplitude.settings.transfer.correction[8];
Diletant 183:c7a9c309086c 2029 hashParamTable[561].size = sizeof(device.dither.amplitude.settings.transfer.correction[8]);
Diletant 183:c7a9c309086c 2030 hashParamTable[562].hash = 0x98a0752e;
Diletant 183:c7a9c309086c 2031 hashParamTable[562].ref = &device.dither.detector.settings.transfer.restored[3];
Diletant 183:c7a9c309086c 2032 hashParamTable[562].size = sizeof(device.dither.detector.settings.transfer.restored[3]);
Diletant 183:c7a9c309086c 2033 hashParamTable[563].hash = 0x9a08bce8;
Diletant 183:c7a9c309086c 2034 hashParamTable[563].ref = &device.plcs.reset.down.settings.environment.duration[13];
Diletant 183:c7a9c309086c 2035 hashParamTable[563].size = sizeof(device.plcs.reset.down.settings.environment.duration[13]);
Diletant 183:c7a9c309086c 2036 hashParamTable[564].hash = 0x9a767092;
Diletant 183:c7a9c309086c 2037 hashParamTable[564].ref = &device.isacs.input.settings.transfer.raw[8];
Diletant 183:c7a9c309086c 2038 hashParamTable[564].size = sizeof(device.isacs.input.settings.transfer.raw[8]);
Diletant 183:c7a9c309086c 2039 hashParamTable[565].hash = 0x9a900bfc;
Diletant 183:c7a9c309086c 2040 hashParamTable[565].ref = &device.sequencer.sampler.settings.sequence[55];
Diletant 183:c7a9c309086c 2041 hashParamTable[565].size = sizeof(device.sequencer.sampler.settings.sequence[55]);
Diletant 183:c7a9c309086c 2042 hashParamTable[566].hash = 0x9ab04f57;
Diletant 183:c7a9c309086c 2043 hashParamTable[566].ref = &device.sequencer.sampler.state.enabled;
Diletant 183:c7a9c309086c 2044 hashParamTable[566].size = sizeof(device.sequencer.sampler.state.enabled);
Diletant 183:c7a9c309086c 2045 hashParamTable[567].hash = 0x9af421f4;
Diletant 183:c7a9c309086c 2046 hashParamTable[567].ref = &device.isacs.regulator.settings.transfer.correction[13];
Diletant 183:c7a9c309086c 2047 hashParamTable[567].size = sizeof(device.isacs.regulator.settings.transfer.correction[13]);
Diletant 183:c7a9c309086c 2048 hashParamTable[568].hash = 0x9b391ccb;
Diletant 183:c7a9c309086c 2049 hashParamTable[568].ref = &device.plcs.output.settings.transfer.voltage[4];
Diletant 183:c7a9c309086c 2050 hashParamTable[568].size = sizeof(device.plcs.output.settings.transfer.voltage[4]);
Diletant 183:c7a9c309086c 2051 hashParamTable[569].hash = 0x9b5261cb;
Diletant 183:c7a9c309086c 2052 hashParamTable[569].ref = &device.sequencer.sampler.settings.sequence[45];
Diletant 183:c7a9c309086c 2053 hashParamTable[569].size = sizeof(device.sequencer.sampler.settings.sequence[45]);
Diletant 183:c7a9c309086c 2054 hashParamTable[570].hash = 0x9bf2b9f9;
Diletant 183:c7a9c309086c 2055 hashParamTable[570].ref = &device.ccs.current[0].settings.transfer.mA[14];
Diletant 183:c7a9c309086c 2056 hashParamTable[570].size = sizeof(device.ccs.current[0].settings.transfer.mA[14]);
Diletant 183:c7a9c309086c 2057 hashParamTable[571].hash = 0x9cb1b09d;
Diletant 183:c7a9c309086c 2058 hashParamTable[571].ref = &device.dither.frequency.settings.transfer.error[0];
Diletant 183:c7a9c309086c 2059 hashParamTable[571].size = sizeof(device.dither.frequency.settings.transfer.error[0]);
Diletant 183:c7a9c309086c 2060 hashParamTable[572].hash = 0x9cea9319;
Diletant 183:c7a9c309086c 2061 hashParamTable[572].ref = &device.sequencer.sampler.settings.sequence[5];
Diletant 183:c7a9c309086c 2062 hashParamTable[572].size = sizeof(device.sequencer.sampler.settings.sequence[5]);
Diletant 183:c7a9c309086c 2063 hashParamTable[573].hash = 0x9cf30799;
Diletant 183:c7a9c309086c 2064 hashParamTable[573].ref = &device.tss.temperature.settings.transfer.celsius[11];
Diletant 183:c7a9c309086c 2065 hashParamTable[573].size = sizeof(device.tss.temperature.settings.transfer.celsius[11]);
Diletant 183:c7a9c309086c 2066 hashParamTable[574].hash = 0x9d99a320;
Diletant 183:c7a9c309086c 2067 hashParamTable[574].ref = &device.sequencer.sampler.settings.sequence[15];
Diletant 183:c7a9c309086c 2068 hashParamTable[574].size = sizeof(device.sequencer.sampler.settings.sequence[15]);
Diletant 183:c7a9c309086c 2069 hashParamTable[575].hash = 0x9e1d774e;
Diletant 183:c7a9c309086c 2070 hashParamTable[575].ref = &device.sequencer.sampler.settings.sequence[35];
Diletant 183:c7a9c309086c 2071 hashParamTable[575].size = sizeof(device.sequencer.sampler.settings.sequence[35]);
Diletant 183:c7a9c309086c 2072 hashParamTable[576].hash = 0x9e50a88e;
Diletant 183:c7a9c309086c 2073 hashParamTable[576].ref = &device.plcs.reset.up.settings.environment.duration[2];
Diletant 183:c7a9c309086c 2074 hashParamTable[576].size = sizeof(device.plcs.reset.up.settings.environment.duration[2]);
Diletant 183:c7a9c309086c 2075 hashParamTable[577].hash = 0x9e54ecc8;
Diletant 183:c7a9c309086c 2076 hashParamTable[577].ref = &device.dither.pulse.state.rise;
Diletant 183:c7a9c309086c 2077 hashParamTable[577].size = sizeof(device.dither.pulse.state.rise);
Diletant 183:c7a9c309086c 2078 hashParamTable[578].hash = 0x9ee1f9a5;
Diletant 183:c7a9c309086c 2079 hashParamTable[578].ref = &device.isacs.regulator.settings.reset.scale;
Diletant 183:c7a9c309086c 2080 hashParamTable[578].size = sizeof(device.isacs.regulator.settings.reset.scale);
Diletant 183:c7a9c309086c 2081 hashParamTable[579].hash = 0x9ef65be2;
Diletant 183:c7a9c309086c 2082 hashParamTable[579].ref = &device.controller.chip;
Diletant 183:c7a9c309086c 2083 hashParamTable[579].size = sizeof(device.controller.chip);
Diletant 183:c7a9c309086c 2084 hashParamTable[580].hash = 0x9f454868;
Diletant 183:c7a9c309086c 2085 hashParamTable[580].ref = &device.isacs.output.settings.transfer.code[4];
Diletant 183:c7a9c309086c 2086 hashParamTable[580].size = sizeof(device.isacs.output.settings.transfer.code[4]);
Diletant 183:c7a9c309086c 2087 hashParamTable[581].hash = 0x9f90d195;
Diletant 183:c7a9c309086c 2088 hashParamTable[581].ref = &device.sequencer.output.analog.settings.transfer.voltage[14];
Diletant 183:c7a9c309086c 2089 hashParamTable[581].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[14]);
Diletant 183:c7a9c309086c 2090 hashParamTable[582].hash = 0x9fdf1d79;
Diletant 183:c7a9c309086c 2091 hashParamTable[582].ref = &device.sequencer.sampler.settings.sequence[25];
Diletant 183:c7a9c309086c 2092 hashParamTable[582].size = sizeof(device.sequencer.sampler.settings.sequence[25]);
Diletant 183:c7a9c309086c 2093 hashParamTable[583].hash = 0xa023a359;
Diletant 183:c7a9c309086c 2094 hashParamTable[583].ref = &device.counters.dither.state.amplitude;
Diletant 183:c7a9c309086c 2095 hashParamTable[583].size = sizeof(device.counters.dither.state.amplitude);
Diletant 183:c7a9c309086c 2096 hashParamTable[584].hash = 0xa06c60ff;
Diletant 183:c7a9c309086c 2097 hashParamTable[584].ref = &device.isacs.input.settings.transfer.raw[12];
Diletant 183:c7a9c309086c 2098 hashParamTable[584].size = sizeof(device.isacs.input.settings.transfer.raw[12]);
Diletant 183:c7a9c309086c 2099 hashParamTable[585].hash = 0xa0e5aeff;
Diletant 183:c7a9c309086c 2100 hashParamTable[585].ref = &device.plcs.reset.up.settings.environment.duration[13];
Diletant 183:c7a9c309086c 2101 hashParamTable[585].size = sizeof(device.plcs.reset.up.settings.environment.duration[13]);
Diletant 183:c7a9c309086c 2102 hashParamTable[586].hash = 0xa11422ab;
Diletant 183:c7a9c309086c 2103 hashParamTable[586].ref = &device.plcs.bias.settings.transfer.raw[14];
Diletant 183:c7a9c309086c 2104 hashParamTable[586].size = sizeof(device.plcs.bias.settings.transfer.raw[14]);
Diletant 183:c7a9c309086c 2105 hashParamTable[587].hash = 0xa11f77ed;
Diletant 183:c7a9c309086c 2106 hashParamTable[587].ref = &device.plcs.reset.down.settings.environment.trigger[8];
Diletant 183:c7a9c309086c 2107 hashParamTable[587].size = sizeof(device.plcs.reset.down.settings.environment.trigger[8]);
Diletant 183:c7a9c309086c 2108 hashParamTable[588].hash = 0xa1594a39;
Diletant 183:c7a9c309086c 2109 hashParamTable[588].ref = &device.ccs.current[0].settings.transfer.mA[4];
Diletant 183:c7a9c309086c 2110 hashParamTable[588].size = sizeof(device.ccs.current[0].settings.transfer.mA[4]);
Diletant 183:c7a9c309086c 2111 hashParamTable[589].hash = 0xa1dc592c;
Diletant 183:c7a9c309086c 2112 hashParamTable[589].ref = &device.plcs.regulator.state.error;
Diletant 183:c7a9c309086c 2113 hashParamTable[589].size = sizeof(device.plcs.regulator.state.error);
Diletant 183:c7a9c309086c 2114 hashParamTable[590].hash = 0xa2411627;
Diletant 183:c7a9c309086c 2115 hashParamTable[590].ref = &device.isacs.output.settings.transfer.code[14];
Diletant 183:c7a9c309086c 2116 hashParamTable[590].size = sizeof(device.isacs.output.settings.transfer.code[14]);
Diletant 183:c7a9c309086c 2117 hashParamTable[591].hash = 0xa2471925;
Diletant 183:c7a9c309086c 2118 hashParamTable[591].ref = &device.isacs.regulator.settings.start.enabled;
Diletant 183:c7a9c309086c 2119 hashParamTable[591].size = sizeof(device.isacs.regulator.settings.start.enabled);
Diletant 183:c7a9c309086c 2120 hashParamTable[592].hash = 0xa25029cd;
Diletant 183:c7a9c309086c 2121 hashParamTable[592].ref = &device.ccs.current[0].settings.transfer.raw[10];
Diletant 183:c7a9c309086c 2122 hashParamTable[592].size = sizeof(device.ccs.current[0].settings.transfer.raw[10]);
Diletant 183:c7a9c309086c 2123 hashParamTable[593].hash = 0xa25f55f0;
Diletant 183:c7a9c309086c 2124 hashParamTable[593].ref = &device.counters.dither.state.delta[0];
Diletant 183:c7a9c309086c 2125 hashParamTable[593].size = sizeof(device.counters.dither.state.delta[0]);
Diletant 183:c7a9c309086c 2126 hashParamTable[594].hash = 0xa27fb4eb;
Diletant 183:c7a9c309086c 2127 hashParamTable[594].ref = &device.plcs.reset.down.settings.environment.duration[6];
Diletant 183:c7a9c309086c 2128 hashParamTable[594].size = sizeof(device.plcs.reset.down.settings.environment.duration[6]);
Diletant 183:c7a9c309086c 2129 hashParamTable[595].hash = 0xa2c2632c;
Diletant 183:c7a9c309086c 2130 hashParamTable[595].ref = &device.tss.gradient.settings.transfer.raw[10];
Diletant 183:c7a9c309086c 2131 hashParamTable[595].size = sizeof(device.tss.gradient.settings.transfer.raw[10]);
Diletant 183:c7a9c309086c 2132 hashParamTable[596].hash = 0xa2c616ad;
Diletant 183:c7a9c309086c 2133 hashParamTable[596].ref = &device.dither.frequency.settings.transfer.correction[0];
Diletant 183:c7a9c309086c 2134 hashParamTable[596].size = sizeof(device.dither.frequency.settings.transfer.correction[0]);
Diletant 183:c7a9c309086c 2135 hashParamTable[597].hash = 0xa2d4e042;
Diletant 183:c7a9c309086c 2136 hashParamTable[597].ref = &device.sequencer.output.analog.settings.transfer.code[5];
Diletant 183:c7a9c309086c 2137 hashParamTable[597].size = sizeof(device.sequencer.output.analog.settings.transfer.code[5]);
Diletant 183:c7a9c309086c 2138 hashParamTable[598].hash = 0xa2db0ee6;
Diletant 183:c7a9c309086c 2139 hashParamTable[598].ref = &device.plcs.output.settings.transfer.voltage[13];
Diletant 183:c7a9c309086c 2140 hashParamTable[598].size = sizeof(device.plcs.output.settings.transfer.voltage[13]);
Diletant 183:c7a9c309086c 2141 hashParamTable[599].hash = 0xa31ef142;
Diletant 183:c7a9c309086c 2142 hashParamTable[599].ref = &device.plcs.bias.state.sum;
Diletant 183:c7a9c309086c 2143 hashParamTable[599].size = sizeof(device.plcs.bias.state.sum);
Diletant 183:c7a9c309086c 2144 hashParamTable[600].hash = 0xa40a68a3;
Diletant 183:c7a9c309086c 2145 hashParamTable[600].ref = &device.counters.meander.state.rate[0];
Diletant 183:c7a9c309086c 2146 hashParamTable[600].size = sizeof(device.counters.meander.state.rate[0]);
Diletant 183:c7a9c309086c 2147 hashParamTable[601].hash = 0xa4214f8f;
Diletant 183:c7a9c309086c 2148 hashParamTable[601].ref = &device.sequencer.output.analog.settings.transfer.voltage[6];
Diletant 183:c7a9c309086c 2149 hashParamTable[601].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[6]);
Diletant 183:c7a9c309086c 2150 hashParamTable[602].hash = 0xa452f6f3;
Diletant 183:c7a9c309086c 2151 hashParamTable[602].ref = &device.tss.temperature.settings.transfer.celsius[5];
Diletant 183:c7a9c309086c 2152 hashParamTable[602].size = sizeof(device.tss.temperature.settings.transfer.celsius[5]);
Diletant 183:c7a9c309086c 2153 hashParamTable[603].hash = 0xa4cccaad;
Diletant 183:c7a9c309086c 2154 hashParamTable[603].ref = &device.counters.latch.state.signal;
Diletant 183:c7a9c309086c 2155 hashParamTable[603].size = sizeof(device.counters.latch.state.signal);
Diletant 183:c7a9c309086c 2156 hashParamTable[604].hash = 0xa4d212c;
Diletant 183:c7a9c309086c 2157 hashParamTable[604].ref = &device.plcs.reset.down.settings.environment.trigger[15];
Diletant 183:c7a9c309086c 2158 hashParamTable[604].size = sizeof(device.plcs.reset.down.settings.environment.trigger[15]);
Diletant 183:c7a9c309086c 2159 hashParamTable[605].hash = 0xa4e250b4;
Diletant 183:c7a9c309086c 2160 hashParamTable[605].ref = &device.sequencer.sampler.settings.position[0];
Diletant 183:c7a9c309086c 2161 hashParamTable[605].size = sizeof(device.sequencer.sampler.settings.position[0]);
Diletant 183:c7a9c309086c 2162 hashParamTable[606].hash = 0xa50a94b2;
Diletant 183:c7a9c309086c 2163 hashParamTable[606].ref = &device.counters.latch.settings.format;
Diletant 183:c7a9c309086c 2164 hashParamTable[606].size = sizeof(device.counters.latch.settings.format);
Diletant 183:c7a9c309086c 2165 hashParamTable[607].hash = 0xa615a487;
Diletant 183:c7a9c309086c 2166 hashParamTable[607].ref = &device.plcs.reset.down.settings.environment.temperature[6];
Diletant 183:c7a9c309086c 2167 hashParamTable[607].size = sizeof(device.plcs.reset.down.settings.environment.temperature[6]);
Diletant 183:c7a9c309086c 2168 hashParamTable[608].hash = 0xa711c6b1;
Diletant 183:c7a9c309086c 2169 hashParamTable[608].ref = &device.plcs.bias.settings.transfer.normalized[6];
Diletant 183:c7a9c309086c 2170 hashParamTable[608].size = sizeof(device.plcs.bias.settings.transfer.normalized[6]);
Diletant 183:c7a9c309086c 2171 hashParamTable[609].hash = 0xa76bfb41;
Diletant 183:c7a9c309086c 2172 hashParamTable[609].ref = &device.tss.gradient.settings.transfer.raw[6];
Diletant 183:c7a9c309086c 2173 hashParamTable[609].size = sizeof(device.tss.gradient.settings.transfer.raw[6]);
Diletant 183:c7a9c309086c 2174 hashParamTable[610].hash = 0xa7d63766;
Diletant 183:c7a9c309086c 2175 hashParamTable[610].ref = &device.plcs.regulator.settings.transfer.error[7];
Diletant 183:c7a9c309086c 2176 hashParamTable[610].size = sizeof(device.plcs.regulator.settings.transfer.error[7]);
Diletant 183:c7a9c309086c 2177 hashParamTable[611].hash = 0xa80ee333;
Diletant 183:c7a9c309086c 2178 hashParamTable[611].ref = &device.lightUp.state.sequence;
Diletant 183:c7a9c309086c 2179 hashParamTable[611].size = sizeof(device.lightUp.state.sequence);
Diletant 183:c7a9c309086c 2180 hashParamTable[612].hash = 0xa83ede6a;
Diletant 183:c7a9c309086c 2181 hashParamTable[612].ref = &device.plcs.reset.down.settings.environment.duration[11];
Diletant 183:c7a9c309086c 2182 hashParamTable[612].size = sizeof(device.plcs.reset.down.settings.environment.duration[11]);
Diletant 183:c7a9c309086c 2183 hashParamTable[613].hash = 0xa8a6697e;
Diletant 183:c7a9c309086c 2184 hashParamTable[613].ref = &device.sequencer.sampler.settings.sequence[57];
Diletant 183:c7a9c309086c 2185 hashParamTable[613].size = sizeof(device.sequencer.sampler.settings.sequence[57]);
Diletant 183:c7a9c309086c 2186 hashParamTable[614].hash = 0xa8c24376;
Diletant 183:c7a9c309086c 2187 hashParamTable[614].ref = &device.isacs.regulator.settings.transfer.correction[11];
Diletant 183:c7a9c309086c 2188 hashParamTable[614].size = sizeof(device.isacs.regulator.settings.transfer.correction[11]);
Diletant 183:c7a9c309086c 2189 hashParamTable[615].hash = 0xa90f7e49;
Diletant 183:c7a9c309086c 2190 hashParamTable[615].ref = &device.plcs.output.settings.transfer.voltage[6];
Diletant 183:c7a9c309086c 2191 hashParamTable[615].size = sizeof(device.plcs.output.settings.transfer.voltage[6]);
Diletant 183:c7a9c309086c 2192 hashParamTable[616].hash = 0xa9640349;
Diletant 183:c7a9c309086c 2193 hashParamTable[616].ref = &device.sequencer.sampler.settings.sequence[47];
Diletant 183:c7a9c309086c 2194 hashParamTable[616].size = sizeof(device.sequencer.sampler.settings.sequence[47]);
Diletant 183:c7a9c309086c 2195 hashParamTable[617].hash = 0xa99e4a3f;
Diletant 183:c7a9c309086c 2196 hashParamTable[617].ref = &device.ccs.current[1].state.raw;
Diletant 183:c7a9c309086c 2197 hashParamTable[617].size = sizeof(device.ccs.current[1].state.raw);
Diletant 183:c7a9c309086c 2198 hashParamTable[618].hash = 0xa9a4d9a5;
Diletant 183:c7a9c309086c 2199 hashParamTable[618].ref = &device.dither.detector.settings.filter.factor[18];
Diletant 183:c7a9c309086c 2200 hashParamTable[618].size = sizeof(device.dither.detector.settings.filter.factor[18]);
Diletant 183:c7a9c309086c 2201 hashParamTable[619].hash = 0xa9f1adb6;
Diletant 183:c7a9c309086c 2202 hashParamTable[619].ref = &device.tss.temperature.settings.transfer.raw[14];
Diletant 183:c7a9c309086c 2203 hashParamTable[619].size = sizeof(device.tss.temperature.settings.transfer.raw[14]);
Diletant 183:c7a9c309086c 2204 hashParamTable[620].hash = 0xaa1215fe;
Diletant 183:c7a9c309086c 2205 hashParamTable[620].ref = &device.plcs.output.settings.sequencer;
Diletant 183:c7a9c309086c 2206 hashParamTable[620].size = sizeof(device.plcs.output.settings.sequencer);
Diletant 183:c7a9c309086c 2207 hashParamTable[621].hash = 0xaa9617ac;
Diletant 183:c7a9c309086c 2208 hashParamTable[621].ref = &device.dither.detector.settings.transfer.restored[1];
Diletant 183:c7a9c309086c 2209 hashParamTable[621].size = sizeof(device.dither.detector.settings.transfer.restored[1]);
Diletant 183:c7a9c309086c 2210 hashParamTable[622].hash = 0xaaeb6cd0;
Diletant 183:c7a9c309086c 2211 hashParamTable[622].ref = &device.ccs.current[1].state.mA;
Diletant 183:c7a9c309086c 2212 hashParamTable[622].size = sizeof(device.ccs.current[1].state.mA);
Diletant 183:c7a9c309086c 2213 hashParamTable[623].hash = 0xaba237cf;
Diletant 183:c7a9c309086c 2214 hashParamTable[623].ref = &device.ccs.current[0].settings.transfer.raw[8];
Diletant 183:c7a9c309086c 2215 hashParamTable[623].size = sizeof(device.ccs.current[0].settings.transfer.raw[8]);
Diletant 183:c7a9c309086c 2216 hashParamTable[624].hash = 0xabe267fc;
Diletant 183:c7a9c309086c 2217 hashParamTable[624].ref = &device.dither.detector.settings.filter.factor[28];
Diletant 183:c7a9c309086c 2218 hashParamTable[624].size = sizeof(device.dither.detector.settings.filter.factor[28]);
Diletant 183:c7a9c309086c 2219 hashParamTable[625].hash = 0xac2b15cc;
Diletant 183:c7a9c309086c 2220 hashParamTable[625].ref = &device.sequencer.sampler.settings.sequence[37];
Diletant 183:c7a9c309086c 2221 hashParamTable[625].size = sizeof(device.sequencer.sampler.settings.sequence[37]);
Diletant 183:c7a9c309086c 2222 hashParamTable[626].hash = 0xac66ca0c;
Diletant 183:c7a9c309086c 2223 hashParamTable[626].ref = &device.plcs.reset.up.settings.environment.duration[0];
Diletant 183:c7a9c309086c 2224 hashParamTable[626].size = sizeof(device.plcs.reset.up.settings.environment.duration[0]);
Diletant 183:c7a9c309086c 2225 hashParamTable[627].hash = 0xad309a93;
Diletant 183:c7a9c309086c 2226 hashParamTable[627].ref = &device.isacs.regulator.settings.transfer.error[8];
Diletant 183:c7a9c309086c 2227 hashParamTable[627].size = sizeof(device.isacs.regulator.settings.transfer.error[8]);
Diletant 183:c7a9c309086c 2228 hashParamTable[628].hash = 0xad732aea;
Diletant 183:c7a9c309086c 2229 hashParamTable[628].ref = &device.isacs.output.settings.transfer.code[6];
Diletant 183:c7a9c309086c 2230 hashParamTable[628].size = sizeof(device.isacs.output.settings.transfer.code[6]);
Diletant 183:c7a9c309086c 2231 hashParamTable[629].hash = 0xadb38eb3;
Diletant 183:c7a9c309086c 2232 hashParamTable[629].ref = &device.plcs.reset.down.settings.environment.temperature[15];
Diletant 183:c7a9c309086c 2233 hashParamTable[629].size = sizeof(device.plcs.reset.down.settings.environment.temperature[15]);
Diletant 183:c7a9c309086c 2234 hashParamTable[630].hash = 0xade97ffb;
Diletant 183:c7a9c309086c 2235 hashParamTable[630].ref = &device.sequencer.sampler.settings.sequence[27];
Diletant 183:c7a9c309086c 2236 hashParamTable[630].size = sizeof(device.sequencer.sampler.settings.sequence[27]);
Diletant 183:c7a9c309086c 2237 hashParamTable[631].hash = 0xae87d21f;
Diletant 183:c7a9c309086c 2238 hashParamTable[631].ref = &device.dither.frequency.settings.transfer.error[2];
Diletant 183:c7a9c309086c 2239 hashParamTable[631].size = sizeof(device.dither.frequency.settings.transfer.error[2]);
Diletant 183:c7a9c309086c 2240 hashParamTable[632].hash = 0xaec5651b;
Diletant 183:c7a9c309086c 2241 hashParamTable[632].ref = &device.tss.temperature.settings.transfer.celsius[13];
Diletant 183:c7a9c309086c 2242 hashParamTable[632].size = sizeof(device.tss.temperature.settings.transfer.celsius[13]);
Diletant 183:c7a9c309086c 2243 hashParamTable[633].hash = 0xaedcf19b;
Diletant 183:c7a9c309086c 2244 hashParamTable[633].ref = &device.sequencer.sampler.settings.sequence[7];
Diletant 183:c7a9c309086c 2245 hashParamTable[633].size = sizeof(device.sequencer.sampler.settings.sequence[7]);
Diletant 183:c7a9c309086c 2246 hashParamTable[634].hash = 0xafafc1a2;
Diletant 183:c7a9c309086c 2247 hashParamTable[634].ref = &device.sequencer.sampler.settings.sequence[17];
Diletant 183:c7a9c309086c 2248 hashParamTable[634].size = sizeof(device.sequencer.sampler.settings.sequence[17]);
Diletant 183:c7a9c309086c 2249 hashParamTable[635].hash = 0xafb8d823;
Diletant 183:c7a9c309086c 2250 hashParamTable[635].ref = &device.counters.latch.settings.enabled;
Diletant 183:c7a9c309086c 2251 hashParamTable[635].size = sizeof(device.counters.latch.settings.enabled);
Diletant 183:c7a9c309086c 2252 hashParamTable[636].hash = 0xb0144f08;
Diletant 183:c7a9c309086c 2253 hashParamTable[636].ref = &device.plcs.output.settings.transfer.voltage[7];
Diletant 183:c7a9c309086c 2254 hashParamTable[636].size = sizeof(device.plcs.output.settings.transfer.voltage[7]);
Diletant 183:c7a9c309086c 2255 hashParamTable[637].hash = 0xb07f3208;
Diletant 183:c7a9c309086c 2256 hashParamTable[637].ref = &device.sequencer.sampler.settings.sequence[46];
Diletant 183:c7a9c309086c 2257 hashParamTable[637].size = sizeof(device.sequencer.sampler.settings.sequence[46]);
Diletant 183:c7a9c309086c 2258 hashParamTable[638].hash = 0xb0bfe8e4;
Diletant 183:c7a9c309086c 2259 hashParamTable[638].ref = &device.dither.detector.settings.filter.factor[19];
Diletant 183:c7a9c309086c 2260 hashParamTable[638].size = sizeof(device.dither.detector.settings.filter.factor[19]);
Diletant 183:c7a9c309086c 2261 hashParamTable[639].hash = 0xb0ea9cf7;
Diletant 183:c7a9c309086c 2262 hashParamTable[639].ref = &device.tss.temperature.settings.transfer.raw[15];
Diletant 183:c7a9c309086c 2263 hashParamTable[639].size = sizeof(device.tss.temperature.settings.transfer.raw[15]);
Diletant 183:c7a9c309086c 2264 hashParamTable[640].hash = 0xb125ef2b;
Diletant 183:c7a9c309086c 2265 hashParamTable[640].ref = &device.plcs.reset.down.settings.environment.duration[10];
Diletant 183:c7a9c309086c 2266 hashParamTable[640].size = sizeof(device.plcs.reset.down.settings.environment.duration[10]);
Diletant 183:c7a9c309086c 2267 hashParamTable[641].hash = 0xb1bd583f;
Diletant 183:c7a9c309086c 2268 hashParamTable[641].ref = &device.sequencer.sampler.settings.sequence[56];
Diletant 183:c7a9c309086c 2269 hashParamTable[641].size = sizeof(device.sequencer.sampler.settings.sequence[56]);
Diletant 183:c7a9c309086c 2270 hashParamTable[642].hash = 0xb1d97237;
Diletant 183:c7a9c309086c 2271 hashParamTable[642].ref = &device.isacs.regulator.settings.transfer.correction[10];
Diletant 183:c7a9c309086c 2272 hashParamTable[642].size = sizeof(device.isacs.regulator.settings.transfer.correction[10]);
Diletant 183:c7a9c309086c 2273 hashParamTable[643].hash = 0xb2048fbd;
Diletant 183:c7a9c309086c 2274 hashParamTable[643].ref = &device.dither.amplitude.state.frequency;
Diletant 183:c7a9c309086c 2275 hashParamTable[643].size = sizeof(device.dither.amplitude.state.frequency);
Diletant 183:c7a9c309086c 2276 hashParamTable[644].hash = 0xb2b9068e;
Diletant 183:c7a9c309086c 2277 hashParamTable[644].ref = &device.ccs.current[0].settings.transfer.raw[9];
Diletant 183:c7a9c309086c 2278 hashParamTable[644].size = sizeof(device.ccs.current[0].settings.transfer.raw[9]);
Diletant 183:c7a9c309086c 2279 hashParamTable[645].hash = 0xb2c18d1;
Diletant 183:c7a9c309086c 2280 hashParamTable[645].ref = &device.plcs.reset.down.settings.environment.target[2];
Diletant 183:c7a9c309086c 2281 hashParamTable[645].size = sizeof(device.plcs.reset.down.settings.environment.target[2]);
Diletant 183:c7a9c309086c 2282 hashParamTable[646].hash = 0xb2f956bd;
Diletant 183:c7a9c309086c 2283 hashParamTable[646].ref = &device.dither.detector.settings.filter.factor[29];
Diletant 183:c7a9c309086c 2284 hashParamTable[646].size = sizeof(device.dither.detector.settings.filter.factor[29]);
Diletant 183:c7a9c309086c 2285 hashParamTable[647].hash = 0xb38d26ed;
Diletant 183:c7a9c309086c 2286 hashParamTable[647].ref = &device.dither.detector.settings.transfer.restored[0];
Diletant 183:c7a9c309086c 2287 hashParamTable[647].size = sizeof(device.dither.detector.settings.transfer.restored[0]);
Diletant 183:c7a9c309086c 2288 hashParamTable[648].hash = 0xb42babd2;
Diletant 183:c7a9c309086c 2289 hashParamTable[648].ref = &device.isacs.regulator.settings.transfer.error[9];
Diletant 183:c7a9c309086c 2290 hashParamTable[648].size = sizeof(device.isacs.regulator.settings.transfer.error[9]);
Diletant 183:c7a9c309086c 2291 hashParamTable[649].hash = 0xb4681bab;
Diletant 183:c7a9c309086c 2292 hashParamTable[649].ref = &device.isacs.output.settings.transfer.code[7];
Diletant 183:c7a9c309086c 2293 hashParamTable[649].size = sizeof(device.isacs.output.settings.transfer.code[7]);
Diletant 183:c7a9c309086c 2294 hashParamTable[650].hash = 0xb4a8bff2;
Diletant 183:c7a9c309086c 2295 hashParamTable[650].ref = &device.plcs.reset.down.settings.environment.temperature[14];
Diletant 183:c7a9c309086c 2296 hashParamTable[650].size = sizeof(device.plcs.reset.down.settings.environment.temperature[14]);
Diletant 183:c7a9c309086c 2297 hashParamTable[651].hash = 0xb4f24eba;
Diletant 183:c7a9c309086c 2298 hashParamTable[651].ref = &device.sequencer.sampler.settings.sequence[26];
Diletant 183:c7a9c309086c 2299 hashParamTable[651].size = sizeof(device.sequencer.sampler.settings.sequence[26]);
Diletant 183:c7a9c309086c 2300 hashParamTable[652].hash = 0xb500fd6;
Diletant 183:c7a9c309086c 2301 hashParamTable[652].ref = &device.sequencer.output.analog.settings.enabled;
Diletant 183:c7a9c309086c 2302 hashParamTable[652].size = sizeof(device.sequencer.output.analog.settings.enabled);
Diletant 183:c7a9c309086c 2303 hashParamTable[653].hash = 0xb530248d;
Diletant 183:c7a9c309086c 2304 hashParamTable[653].ref = &device.sequencer.sampler.settings.sequence[36];
Diletant 183:c7a9c309086c 2305 hashParamTable[653].size = sizeof(device.sequencer.sampler.settings.sequence[36]);
Diletant 183:c7a9c309086c 2306 hashParamTable[654].hash = 0xb56c741c;
Diletant 183:c7a9c309086c 2307 hashParamTable[654].ref = &device.tss.temperature.state.sum;
Diletant 183:c7a9c309086c 2308 hashParamTable[654].size = sizeof(device.tss.temperature.state.sum);
Diletant 183:c7a9c309086c 2309 hashParamTable[655].hash = 0xb5749b10;
Diletant 183:c7a9c309086c 2310 hashParamTable[655].ref = &device.sequencer.output.analog.settings.transfer.points;
Diletant 183:c7a9c309086c 2311 hashParamTable[655].size = sizeof(device.sequencer.output.analog.settings.transfer.points);
Diletant 183:c7a9c309086c 2312 hashParamTable[656].hash = 0xb57dcb8f;
Diletant 183:c7a9c309086c 2313 hashParamTable[656].ref = &device.plcs.reset.up.state.duration;
Diletant 183:c7a9c309086c 2314 hashParamTable[656].size = sizeof(device.plcs.reset.up.state.duration);
Diletant 183:c7a9c309086c 2315 hashParamTable[657].hash = 0xb57dfb4d;
Diletant 183:c7a9c309086c 2316 hashParamTable[657].ref = &device.plcs.reset.up.settings.environment.duration[1];
Diletant 183:c7a9c309086c 2317 hashParamTable[657].size = sizeof(device.plcs.reset.up.settings.environment.duration[1]);
Diletant 183:c7a9c309086c 2318 hashParamTable[658].hash = 0xb60bd7d;
Diletant 183:c7a9c309086c 2319 hashParamTable[658].ref = &device.plcs.feedback.settings.transfer.normalized[15];
Diletant 183:c7a9c309086c 2320 hashParamTable[658].size = sizeof(device.plcs.feedback.settings.transfer.normalized[15]);
Diletant 183:c7a9c309086c 2321 hashParamTable[659].hash = 0xb6b4f0e3;
Diletant 183:c7a9c309086c 2322 hashParamTable[659].ref = &device.sequencer.sampler.settings.sequence[16];
Diletant 183:c7a9c309086c 2323 hashParamTable[659].size = sizeof(device.sequencer.sampler.settings.sequence[16]);
Diletant 183:c7a9c309086c 2324 hashParamTable[660].hash = 0xb79ce35e;
Diletant 183:c7a9c309086c 2325 hashParamTable[660].ref = &device.dither.frequency.settings.transfer.error[3];
Diletant 183:c7a9c309086c 2326 hashParamTable[660].size = sizeof(device.dither.frequency.settings.transfer.error[3]);
Diletant 183:c7a9c309086c 2327 hashParamTable[661].hash = 0xb7c7c0da;
Diletant 183:c7a9c309086c 2328 hashParamTable[661].ref = &device.sequencer.sampler.settings.sequence[6];
Diletant 183:c7a9c309086c 2329 hashParamTable[661].size = sizeof(device.sequencer.sampler.settings.sequence[6]);
Diletant 183:c7a9c309086c 2330 hashParamTable[662].hash = 0xb7de545a;
Diletant 183:c7a9c309086c 2331 hashParamTable[662].ref = &device.tss.temperature.settings.transfer.celsius[12];
Diletant 183:c7a9c309086c 2332 hashParamTable[662].size = sizeof(device.tss.temperature.settings.transfer.celsius[12]);
Diletant 183:c7a9c309086c 2333 hashParamTable[663].hash = 0xb80446ac;
Diletant 183:c7a9c309086c 2334 hashParamTable[663].ref = &device.plcs.reset.down.settings.environment.trigger[9];
Diletant 183:c7a9c309086c 2335 hashParamTable[663].size = sizeof(device.plcs.reset.down.settings.environment.trigger[9]);
Diletant 183:c7a9c309086c 2336 hashParamTable[664].hash = 0xb80f13ea;
Diletant 183:c7a9c309086c 2337 hashParamTable[664].ref = &device.plcs.bias.settings.transfer.raw[15];
Diletant 183:c7a9c309086c 2338 hashParamTable[664].size = sizeof(device.plcs.bias.settings.transfer.raw[15]);
Diletant 183:c7a9c309086c 2339 hashParamTable[665].hash = 0xb8256f;
Diletant 183:c7a9c309086c 2340 hashParamTable[665].ref = &device.dither.detector.settings.transfer.raw[2];
Diletant 183:c7a9c309086c 2341 hashParamTable[665].size = sizeof(device.dither.detector.settings.transfer.raw[2]);
Diletant 183:c7a9c309086c 2342 hashParamTable[666].hash = 0xb8427b78;
Diletant 183:c7a9c309086c 2343 hashParamTable[666].ref = &device.ccs.current[0].settings.transfer.mA[5];
Diletant 183:c7a9c309086c 2344 hashParamTable[666].size = sizeof(device.ccs.current[0].settings.transfer.mA[5]);
Diletant 183:c7a9c309086c 2345 hashParamTable[667].hash = 0xb8ee42b;
Diletant 183:c7a9c309086c 2346 hashParamTable[667].ref = &device.plcs.reset.up.settings.environment.temperature[14];
Diletant 183:c7a9c309086c 2347 hashParamTable[667].size = sizeof(device.plcs.reset.up.settings.environment.temperature[14]);
Diletant 183:c7a9c309086c 2348 hashParamTable[668].hash = 0xb97751be;
Diletant 183:c7a9c309086c 2349 hashParamTable[668].ref = &device.isacs.input.settings.transfer.raw[13];
Diletant 183:c7a9c309086c 2350 hashParamTable[668].size = sizeof(device.isacs.input.settings.transfer.raw[13]);
Diletant 183:c7a9c309086c 2351 hashParamTable[669].hash = 0xb9fe9fbe;
Diletant 183:c7a9c309086c 2352 hashParamTable[669].ref = &device.plcs.reset.up.settings.environment.duration[12];
Diletant 183:c7a9c309086c 2353 hashParamTable[669].size = sizeof(device.plcs.reset.up.settings.environment.duration[12]);
Diletant 183:c7a9c309086c 2354 hashParamTable[670].hash = 0xbb4464b1;
Diletant 183:c7a9c309086c 2355 hashParamTable[670].ref = &device.counters.dither.state.delta[1];
Diletant 183:c7a9c309086c 2356 hashParamTable[670].size = sizeof(device.counters.dither.state.delta[1]);
Diletant 183:c7a9c309086c 2357 hashParamTable[671].hash = 0xbb4b188c;
Diletant 183:c7a9c309086c 2358 hashParamTable[671].ref = &device.ccs.current[0].settings.transfer.raw[11];
Diletant 183:c7a9c309086c 2359 hashParamTable[671].size = sizeof(device.ccs.current[0].settings.transfer.raw[11]);
Diletant 183:c7a9c309086c 2360 hashParamTable[672].hash = 0xbb5a2766;
Diletant 183:c7a9c309086c 2361 hashParamTable[672].ref = &device.isacs.output.settings.transfer.code[15];
Diletant 183:c7a9c309086c 2362 hashParamTable[672].size = sizeof(device.isacs.output.settings.transfer.code[15]);
Diletant 183:c7a9c309086c 2363 hashParamTable[673].hash = 0xbb6485aa;
Diletant 183:c7a9c309086c 2364 hashParamTable[673].ref = &device.plcs.reset.down.settings.environment.duration[7];
Diletant 183:c7a9c309086c 2365 hashParamTable[673].size = sizeof(device.plcs.reset.down.settings.environment.duration[7]);
Diletant 183:c7a9c309086c 2366 hashParamTable[674].hash = 0xbbacc986;
Diletant 183:c7a9c309086c 2367 hashParamTable[674].ref = &device.plcs.output.state.voltage;
Diletant 183:c7a9c309086c 2368 hashParamTable[674].size = sizeof(device.plcs.output.state.voltage);
Diletant 183:c7a9c309086c 2369 hashParamTable[675].hash = 0xbbc03fa7;
Diletant 183:c7a9c309086c 2370 hashParamTable[675].ref = &device.plcs.output.settings.transfer.voltage[12];
Diletant 183:c7a9c309086c 2371 hashParamTable[675].size = sizeof(device.plcs.output.settings.transfer.voltage[12]);
Diletant 183:c7a9c309086c 2372 hashParamTable[676].hash = 0xbbcfd103;
Diletant 183:c7a9c309086c 2373 hashParamTable[676].ref = &device.sequencer.output.analog.settings.transfer.code[4];
Diletant 183:c7a9c309086c 2374 hashParamTable[676].size = sizeof(device.sequencer.output.analog.settings.transfer.code[4]);
Diletant 183:c7a9c309086c 2375 hashParamTable[677].hash = 0xbbd9526d;
Diletant 183:c7a9c309086c 2376 hashParamTable[677].ref = &device.tss.gradient.settings.transfer.raw[11];
Diletant 183:c7a9c309086c 2377 hashParamTable[677].size = sizeof(device.tss.gradient.settings.transfer.raw[11]);
Diletant 183:c7a9c309086c 2378 hashParamTable[678].hash = 0xbbdd27ec;
Diletant 183:c7a9c309086c 2379 hashParamTable[678].ref = &device.dither.frequency.settings.transfer.correction[1];
Diletant 183:c7a9c309086c 2380 hashParamTable[678].size = sizeof(device.dither.frequency.settings.transfer.correction[1]);
Diletant 183:c7a9c309086c 2381 hashParamTable[679].hash = 0xbd1159e2;
Diletant 183:c7a9c309086c 2382 hashParamTable[679].ref = &device.counters.meander.state.rate[1];
Diletant 183:c7a9c309086c 2383 hashParamTable[679].size = sizeof(device.counters.meander.state.rate[1]);
Diletant 183:c7a9c309086c 2384 hashParamTable[680].hash = 0xbd3a7ece;
Diletant 183:c7a9c309086c 2385 hashParamTable[680].ref = &device.sequencer.output.analog.settings.transfer.voltage[7];
Diletant 183:c7a9c309086c 2386 hashParamTable[680].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[7]);
Diletant 183:c7a9c309086c 2387 hashParamTable[681].hash = 0xbd49c7b2;
Diletant 183:c7a9c309086c 2388 hashParamTable[681].ref = &device.tss.temperature.settings.transfer.celsius[4];
Diletant 183:c7a9c309086c 2389 hashParamTable[681].size = sizeof(device.tss.temperature.settings.transfer.celsius[4]);
Diletant 183:c7a9c309086c 2390 hashParamTable[682].hash = 0xbda3a53;
Diletant 183:c7a9c309086c 2391 hashParamTable[682].ref = &device.isacs.input.state.raw;
Diletant 183:c7a9c309086c 2392 hashParamTable[682].size = sizeof(device.isacs.input.state.raw);
Diletant 183:c7a9c309086c 2393 hashParamTable[683].hash = 0xbdf961f5;
Diletant 183:c7a9c309086c 2394 hashParamTable[683].ref = &device.sequencer.sampler.settings.position[1];
Diletant 183:c7a9c309086c 2395 hashParamTable[683].size = sizeof(device.sequencer.sampler.settings.position[1]);
Diletant 183:c7a9c309086c 2396 hashParamTable[684].hash = 0xbdff6e0b;
Diletant 183:c7a9c309086c 2397 hashParamTable[684].ref = &device.sequencer.sampler.state.amplitude;
Diletant 183:c7a9c309086c 2398 hashParamTable[684].size = sizeof(device.sequencer.sampler.state.amplitude);
Diletant 183:c7a9c309086c 2399 hashParamTable[685].hash = 0xbe0af7f0;
Diletant 183:c7a9c309086c 2400 hashParamTable[685].ref = &device.plcs.bias.settings.transfer.normalized[7];
Diletant 183:c7a9c309086c 2401 hashParamTable[685].size = sizeof(device.plcs.bias.settings.transfer.normalized[7]);
Diletant 183:c7a9c309086c 2402 hashParamTable[686].hash = 0xbe70ca00;
Diletant 183:c7a9c309086c 2403 hashParamTable[686].ref = &device.tss.gradient.settings.transfer.raw[7];
Diletant 183:c7a9c309086c 2404 hashParamTable[686].size = sizeof(device.tss.gradient.settings.transfer.raw[7]);
Diletant 183:c7a9c309086c 2405 hashParamTable[687].hash = 0xbecd0627;
Diletant 183:c7a9c309086c 2406 hashParamTable[687].ref = &device.plcs.regulator.settings.transfer.error[6];
Diletant 183:c7a9c309086c 2407 hashParamTable[687].size = sizeof(device.plcs.regulator.settings.transfer.error[6]);
Diletant 183:c7a9c309086c 2408 hashParamTable[688].hash = 0xbf0e95c6;
Diletant 183:c7a9c309086c 2409 hashParamTable[688].ref = &device.plcs.reset.down.settings.environment.temperature[7];
Diletant 183:c7a9c309086c 2410 hashParamTable[688].size = sizeof(device.plcs.reset.down.settings.environment.temperature[7]);
Diletant 183:c7a9c309086c 2411 hashParamTable[689].hash = 0xbf36e77;
Diletant 183:c7a9c309086c 2412 hashParamTable[689].ref = &device.dither.amplitude.settings.transfer.error[15];
Diletant 183:c7a9c309086c 2413 hashParamTable[689].size = sizeof(device.dither.amplitude.settings.transfer.error[15]);
Diletant 183:c7a9c309086c 2414 hashParamTable[690].hash = 0xc03e33f7;
Diletant 183:c7a9c309086c 2415 hashParamTable[690].ref = &device.tss.temperature.settings.transfer.celsius[1];
Diletant 183:c7a9c309086c 2416 hashParamTable[690].size = sizeof(device.tss.temperature.settings.transfer.celsius[1]);
Diletant 183:c7a9c309086c 2417 hashParamTable[691].hash = 0xc04d8a8b;
Diletant 183:c7a9c309086c 2418 hashParamTable[691].ref = &device.sequencer.output.analog.settings.transfer.voltage[2];
Diletant 183:c7a9c309086c 2419 hashParamTable[691].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[2]);
Diletant 183:c7a9c309086c 2420 hashParamTable[692].hash = 0xc0618565;
Diletant 183:c7a9c309086c 2421 hashParamTable[692].ref = &device.isacs.regulator.settings.transfer.correction[8];
Diletant 183:c7a9c309086c 2422 hashParamTable[692].size = sizeof(device.isacs.regulator.settings.transfer.correction[8]);
Diletant 183:c7a9c309086c 2423 hashParamTable[693].hash = 0xc0e90f5f;
Diletant 183:c7a9c309086c 2424 hashParamTable[693].ref = &device.plcs.feedback.settings.transfer.normalized[9];
Diletant 183:c7a9c309086c 2425 hashParamTable[693].size = sizeof(device.plcs.feedback.settings.transfer.normalized[9]);
Diletant 183:c7a9c309086c 2426 hashParamTable[694].hash = 0xc177fc3b;
Diletant 183:c7a9c309086c 2427 hashParamTable[694].ref = &device.dither.noise.state.trigger;
Diletant 183:c7a9c309086c 2428 hashParamTable[694].size = sizeof(device.dither.noise.state.trigger);
Diletant 183:c7a9c309086c 2429 hashParamTable[695].hash = 0xc2796183;
Diletant 183:c7a9c309086c 2430 hashParamTable[695].ref = &device.plcs.reset.down.settings.environment.temperature[2];
Diletant 183:c7a9c309086c 2431 hashParamTable[695].size = sizeof(device.plcs.reset.down.settings.environment.temperature[2]);
Diletant 183:c7a9c309086c 2432 hashParamTable[696].hash = 0xc3073e45;
Diletant 183:c7a9c309086c 2433 hashParamTable[696].ref = &device.tss.gradient.settings.transfer.raw[2];
Diletant 183:c7a9c309086c 2434 hashParamTable[696].size = sizeof(device.tss.gradient.settings.transfer.raw[2]);
Diletant 183:c7a9c309086c 2435 hashParamTable[697].hash = 0xc37d03b5;
Diletant 183:c7a9c309086c 2436 hashParamTable[697].ref = &device.plcs.bias.settings.transfer.normalized[2];
Diletant 183:c7a9c309086c 2437 hashParamTable[697].size = sizeof(device.plcs.bias.settings.transfer.normalized[2]);
Diletant 183:c7a9c309086c 2438 hashParamTable[698].hash = 0xc38048cc;
Diletant 183:c7a9c309086c 2439 hashParamTable[698].ref = &device.controller.I2C.state.counter;
Diletant 183:c7a9c309086c 2440 hashParamTable[698].size = sizeof(device.controller.I2C.state.counter);
Diletant 183:c7a9c309086c 2441 hashParamTable[699].hash = 0xc3baf262;
Diletant 183:c7a9c309086c 2442 hashParamTable[699].ref = &device.plcs.regulator.settings.transfer.error[3];
Diletant 183:c7a9c309086c 2443 hashParamTable[699].size = sizeof(device.plcs.regulator.settings.transfer.error[3]);
Diletant 183:c7a9c309086c 2444 hashParamTable[700].hash = 0xc4212aac;
Diletant 183:c7a9c309086c 2445 hashParamTable[700].ref = &device.dither.amplitude.settings.transfer.error[8];
Diletant 183:c7a9c309086c 2446 hashParamTable[700].size = sizeof(device.dither.amplitude.settings.transfer.error[8]);
Diletant 183:c7a9c309086c 2447 hashParamTable[701].hash = 0xc4c6dc10;
Diletant 183:c7a9c309086c 2448 hashParamTable[701].ref = &device.plcs.feedback.state.output;
Diletant 183:c7a9c309086c 2449 hashParamTable[701].size = sizeof(device.plcs.feedback.state.output);
Diletant 183:c7a9c309086c 2450 hashParamTable[702].hash = 0xc4dd202b;
Diletant 183:c7a9c309086c 2451 hashParamTable[702].ref = &device.dither.cycle.settings.enabled;
Diletant 183:c7a9c309086c 2452 hashParamTable[702].size = sizeof(device.dither.cycle.settings.enabled);
Diletant 183:c7a9c309086c 2453 hashParamTable[703].hash = 0xc5139b41;
Diletant 183:c7a9c309086c 2454 hashParamTable[703].ref = &device.plcs.reset.down.state.duration;
Diletant 183:c7a9c309086c 2455 hashParamTable[703].size = sizeof(device.plcs.reset.down.state.duration);
Diletant 183:c7a9c309086c 2456 hashParamTable[704].hash = 0xc5358f3d;
Diletant 183:c7a9c309086c 2457 hashParamTable[704].ref = &device.ccs.current[0].settings.transfer.mA[0];
Diletant 183:c7a9c309086c 2458 hashParamTable[704].size = sizeof(device.ccs.current[0].settings.transfer.mA[0]);
Diletant 183:c7a9c309086c 2459 hashParamTable[705].hash = 0xc5593728;
Diletant 183:c7a9c309086c 2460 hashParamTable[705].ref = &device.plcs.regulator.settings.transfer.correction[12];
Diletant 183:c7a9c309086c 2461 hashParamTable[705].size = sizeof(device.plcs.regulator.settings.transfer.correction[12]);
Diletant 183:c7a9c309086c 2462 hashParamTable[706].hash = 0xc56d211c;
Diletant 183:c7a9c309086c 2463 hashParamTable[706].ref = &device.counters.latch.state.reset;
Diletant 183:c7a9c309086c 2464 hashParamTable[706].size = sizeof(device.counters.latch.state.reset);
Diletant 183:c7a9c309086c 2465 hashParamTable[707].hash = 0xc578e7af;
Diletant 183:c7a9c309086c 2466 hashParamTable[707].ref = &device.plcs.bias.settings.transfer.raw[10];
Diletant 183:c7a9c309086c 2467 hashParamTable[707].size = sizeof(device.plcs.bias.settings.transfer.raw[10]);
Diletant 183:c7a9c309086c 2468 hashParamTable[708].hash = 0xc61371ef;
Diletant 183:c7a9c309086c 2469 hashParamTable[708].ref = &device.plcs.reset.down.settings.environment.duration[2];
Diletant 183:c7a9c309086c 2470 hashParamTable[708].size = sizeof(device.plcs.reset.down.settings.environment.duration[2]);
Diletant 183:c7a9c309086c 2471 hashParamTable[709].hash = 0xc62dd323;
Diletant 183:c7a9c309086c 2472 hashParamTable[709].ref = &device.isacs.output.settings.transfer.code[10];
Diletant 183:c7a9c309086c 2473 hashParamTable[709].size = sizeof(device.isacs.output.settings.transfer.code[10]);
Diletant 183:c7a9c309086c 2474 hashParamTable[710].hash = 0xc63390f4;
Diletant 183:c7a9c309086c 2475 hashParamTable[710].ref = &device.counters.dither.state.delta[4];
Diletant 183:c7a9c309086c 2476 hashParamTable[710].size = sizeof(device.counters.dither.state.delta[4]);
Diletant 183:c7a9c309086c 2477 hashParamTable[711].hash = 0xc63cecc9;
Diletant 183:c7a9c309086c 2478 hashParamTable[711].ref = &device.ccs.current[0].settings.transfer.raw[14];
Diletant 183:c7a9c309086c 2479 hashParamTable[711].size = sizeof(device.ccs.current[0].settings.transfer.raw[14]);
Diletant 183:c7a9c309086c 2480 hashParamTable[712].hash = 0xc69881ce;
Diletant 183:c7a9c309086c 2481 hashParamTable[712].ref = &device.isacs.input.state.V;
Diletant 183:c7a9c309086c 2482 hashParamTable[712].size = sizeof(device.isacs.input.state.V);
Diletant 183:c7a9c309086c 2483 hashParamTable[713].hash = 0xc6aad3a9;
Diletant 183:c7a9c309086c 2484 hashParamTable[713].ref = &device.dither.frequency.settings.transfer.correction[4];
Diletant 183:c7a9c309086c 2485 hashParamTable[713].size = sizeof(device.dither.frequency.settings.transfer.correction[4]);
Diletant 183:c7a9c309086c 2486 hashParamTable[714].hash = 0xc6aea628;
Diletant 183:c7a9c309086c 2487 hashParamTable[714].ref = &device.tss.gradient.settings.transfer.raw[14];
Diletant 183:c7a9c309086c 2488 hashParamTable[714].size = sizeof(device.tss.gradient.settings.transfer.raw[14]);
Diletant 183:c7a9c309086c 2489 hashParamTable[715].hash = 0xc6b82546;
Diletant 183:c7a9c309086c 2490 hashParamTable[715].ref = &device.sequencer.output.analog.settings.transfer.code[1];
Diletant 183:c7a9c309086c 2491 hashParamTable[715].size = sizeof(device.sequencer.output.analog.settings.transfer.code[1]);
Diletant 183:c7a9c309086c 2492 hashParamTable[716].hash = 0xc6d70a1e;
Diletant 183:c7a9c309086c 2493 hashParamTable[716].ref = &device.isacs.regulator.settings.regular.reference;
Diletant 183:c7a9c309086c 2494 hashParamTable[716].size = sizeof(device.isacs.regulator.settings.regular.reference);
Diletant 183:c7a9c309086c 2495 hashParamTable[717].hash = 0xc71120d3;
Diletant 183:c7a9c309086c 2496 hashParamTable[717].ref = &device.dither.noise.settings.period;
Diletant 183:c7a9c309086c 2497 hashParamTable[717].size = sizeof(device.dither.noise.settings.period);
Diletant 183:c7a9c309086c 2498 hashParamTable[718].hash = 0xc7ed2462;
Diletant 183:c7a9c309086c 2499 hashParamTable[718].ref = &device.plcs.output.settings.transfer.code[9];
Diletant 183:c7a9c309086c 2500 hashParamTable[718].size = sizeof(device.plcs.output.settings.transfer.code[9]);
Diletant 183:c7a9c309086c 2501 hashParamTable[719].hash = 0xc80a0f08;
Diletant 183:c7a9c309086c 2502 hashParamTable[719].ref = &device.plcs.reset.up.settings.environment.duration[4];
Diletant 183:c7a9c309086c 2503 hashParamTable[719].size = sizeof(device.plcs.reset.up.settings.environment.duration[4]);
Diletant 183:c7a9c309086c 2504 hashParamTable[720].hash = 0xc847d0c8;
Diletant 183:c7a9c309086c 2505 hashParamTable[720].ref = &device.sequencer.sampler.settings.sequence[33];
Diletant 183:c7a9c309086c 2506 hashParamTable[720].size = sizeof(device.sequencer.sampler.settings.sequence[33]);
Diletant 183:c7a9c309086c 2507 hashParamTable[721].hash = 0xc871939f;
Diletant 183:c7a9c309086c 2508 hashParamTable[721].ref = &device.dither.cycle.state.enabled;
Diletant 183:c7a9c309086c 2509 hashParamTable[721].size = sizeof(device.dither.cycle.state.enabled);
Diletant 183:c7a9c309086c 2510 hashParamTable[722].hash = 0xc91fefee;
Diletant 183:c7a9c309086c 2511 hashParamTable[722].ref = &device.isacs.output.settings.transfer.code[2];
Diletant 183:c7a9c309086c 2512 hashParamTable[722].size = sizeof(device.isacs.output.settings.transfer.code[2]);
Diletant 183:c7a9c309086c 2513 hashParamTable[723].hash = 0xc93db6a7;
Diletant 183:c7a9c309086c 2514 hashParamTable[723].ref = &device.plcs.bias.settings.transfer.raw[9];
Diletant 183:c7a9c309086c 2515 hashParamTable[723].size = sizeof(device.plcs.bias.settings.transfer.raw[9]);
Diletant 183:c7a9c309086c 2516 hashParamTable[724].hash = 0xc93fb1fd;
Diletant 183:c7a9c309086c 2517 hashParamTable[724].ref = &device.plcs.feedback.settings.transfer.raw[9];
Diletant 183:c7a9c309086c 2518 hashParamTable[724].size = sizeof(device.plcs.feedback.settings.transfer.raw[9]);
Diletant 183:c7a9c309086c 2519 hashParamTable[725].hash = 0xc985baff;
Diletant 183:c7a9c309086c 2520 hashParamTable[725].ref = &device.sequencer.sampler.settings.sequence[23];
Diletant 183:c7a9c309086c 2521 hashParamTable[725].size = sizeof(device.sequencer.sampler.settings.sequence[23]);
Diletant 183:c7a9c309086c 2522 hashParamTable[726].hash = 0xc9ca7613;
Diletant 183:c7a9c309086c 2523 hashParamTable[726].ref = &device.sequencer.output.analog.settings.transfer.voltage[12];
Diletant 183:c7a9c309086c 2524 hashParamTable[726].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[12]);
Diletant 183:c7a9c309086c 2525 hashParamTable[727].hash = 0xc9df4bb7;
Diletant 183:c7a9c309086c 2526 hashParamTable[727].ref = &device.plcs.reset.down.settings.environment.temperature[11];
Diletant 183:c7a9c309086c 2527 hashParamTable[727].size = sizeof(device.plcs.reset.down.settings.environment.temperature[11]);
Diletant 183:c7a9c309086c 2528 hashParamTable[728].hash = 0xc9f26ea0;
Diletant 183:c7a9c309086c 2529 hashParamTable[728].ref = &device.plcs.reset.up.settings.environment.target[9];
Diletant 183:c7a9c309086c 2530 hashParamTable[728].size = sizeof(device.plcs.reset.up.settings.environment.target[9]);
Diletant 183:c7a9c309086c 2531 hashParamTable[729].hash = 0xcab0349f;
Diletant 183:c7a9c309086c 2532 hashParamTable[729].ref = &device.sequencer.sampler.settings.sequence[3];
Diletant 183:c7a9c309086c 2533 hashParamTable[729].size = sizeof(device.sequencer.sampler.settings.sequence[3]);
Diletant 183:c7a9c309086c 2534 hashParamTable[730].hash = 0xcad52cc8;
Diletant 183:c7a9c309086c 2535 hashParamTable[730].ref = &device.isacs.output.settings.transfer.voltage[9];
Diletant 183:c7a9c309086c 2536 hashParamTable[730].size = sizeof(device.isacs.output.settings.transfer.voltage[9]);
Diletant 183:c7a9c309086c 2537 hashParamTable[731].hash = 0xcaeb171b;
Diletant 183:c7a9c309086c 2538 hashParamTable[731].ref = &device.dither.frequency.settings.transfer.error[6];
Diletant 183:c7a9c309086c 2539 hashParamTable[731].size = sizeof(device.dither.frequency.settings.transfer.error[6]);
Diletant 183:c7a9c309086c 2540 hashParamTable[732].hash = 0xcbc304a6;
Diletant 183:c7a9c309086c 2541 hashParamTable[732].ref = &device.sequencer.sampler.settings.sequence[13];
Diletant 183:c7a9c309086c 2542 hashParamTable[732].size = sizeof(device.sequencer.sampler.settings.sequence[13]);
Diletant 183:c7a9c309086c 2543 hashParamTable[733].hash = 0xcc521b6e;
Diletant 183:c7a9c309086c 2544 hashParamTable[733].ref = &device.plcs.reset.down.settings.environment.duration[15];
Diletant 183:c7a9c309086c 2545 hashParamTable[733].size = sizeof(device.plcs.reset.down.settings.environment.duration[15]);
Diletant 183:c7a9c309086c 2546 hashParamTable[734].hash = 0xccae8672;
Diletant 183:c7a9c309086c 2547 hashParamTable[734].ref = &device.isacs.regulator.settings.transfer.correction[15];
Diletant 183:c7a9c309086c 2548 hashParamTable[734].size = sizeof(device.isacs.regulator.settings.transfer.correction[15]);
Diletant 183:c7a9c309086c 2549 hashParamTable[735].hash = 0xcccaac7a;
Diletant 183:c7a9c309086c 2550 hashParamTable[735].ref = &device.sequencer.sampler.settings.sequence[53];
Diletant 183:c7a9c309086c 2551 hashParamTable[735].size = sizeof(device.sequencer.sampler.settings.sequence[53]);
Diletant 183:c7a9c309086c 2552 hashParamTable[736].hash = 0xcd08c64d;
Diletant 183:c7a9c309086c 2553 hashParamTable[736].ref = &device.sequencer.sampler.settings.sequence[43];
Diletant 183:c7a9c309086c 2554 hashParamTable[736].size = sizeof(device.sequencer.sampler.settings.sequence[43]);
Diletant 183:c7a9c309086c 2555 hashParamTable[737].hash = 0xcd55a6bd;
Diletant 183:c7a9c309086c 2556 hashParamTable[737].ref = &device.plcs.reference.state.delta;
Diletant 183:c7a9c309086c 2557 hashParamTable[737].size = sizeof(device.plcs.reference.state.delta);
Diletant 183:c7a9c309086c 2558 hashParamTable[738].hash = 0xcd63bb4d;
Diletant 183:c7a9c309086c 2559 hashParamTable[738].ref = &device.plcs.output.settings.transfer.voltage[2];
Diletant 183:c7a9c309086c 2560 hashParamTable[738].size = sizeof(device.plcs.output.settings.transfer.voltage[2]);
Diletant 183:c7a9c309086c 2561 hashParamTable[739].hash = 0xcd9d68b2;
Diletant 183:c7a9c309086c 2562 hashParamTable[739].ref = &device.tss.temperature.settings.transfer.raw[10];
Diletant 183:c7a9c309086c 2563 hashParamTable[739].size = sizeof(device.tss.temperature.settings.transfer.raw[10]);
Diletant 183:c7a9c309086c 2564 hashParamTable[740].hash = 0xcda81e7f;
Diletant 183:c7a9c309086c 2565 hashParamTable[740].ref = &device.ccs.current[0].settings.transfer.mA[12];
Diletant 183:c7a9c309086c 2566 hashParamTable[740].size = sizeof(device.ccs.current[0].settings.transfer.mA[12]);
Diletant 183:c7a9c309086c 2567 hashParamTable[741].hash = 0xce004abf;
Diletant 183:c7a9c309086c 2568 hashParamTable[741].ref = &device.tss.gradient.state.raw;
Diletant 183:c7a9c309086c 2569 hashParamTable[741].size = sizeof(device.tss.gradient.state.raw);
Diletant 183:c7a9c309086c 2570 hashParamTable[742].hash = 0xce4727c2;
Diletant 183:c7a9c309086c 2571 hashParamTable[742].ref = &device.isacs.regulator.settings.transfer.error[13];
Diletant 183:c7a9c309086c 2572 hashParamTable[742].size = sizeof(device.isacs.regulator.settings.transfer.error[13]);
Diletant 183:c7a9c309086c 2573 hashParamTable[743].hash = 0xce8c1223;
Diletant 183:c7a9c309086c 2574 hashParamTable[743].ref = &device.sequencer.sampler.settings.sequence[63];
Diletant 183:c7a9c309086c 2575 hashParamTable[743].size = sizeof(device.sequencer.sampler.settings.sequence[63]);
Diletant 183:c7a9c309086c 2576 hashParamTable[744].hash = 0xceac463a;
Diletant 183:c7a9c309086c 2577 hashParamTable[744].ref = &device.plcs.reset.up.settings.environment.temperature[8];
Diletant 183:c7a9c309086c 2578 hashParamTable[744].size = sizeof(device.plcs.reset.up.settings.environment.temperature[8]);
Diletant 183:c7a9c309086c 2579 hashParamTable[745].hash = 0xcefad2a8;
Diletant 183:c7a9c309086c 2580 hashParamTable[745].ref = &device.dither.detector.settings.transfer.restored[5];
Diletant 183:c7a9c309086c 2581 hashParamTable[745].size = sizeof(device.dither.detector.settings.transfer.restored[5]);
Diletant 183:c7a9c309086c 2582 hashParamTable[746].hash = 0xcf8a0a4;
Diletant 183:c7a9c309086c 2583 hashParamTable[746].ref = &device.dither.amplitude.settings.transfer.error[0];
Diletant 183:c7a9c309086c 2584 hashParamTable[746].size = sizeof(device.dither.amplitude.settings.transfer.error[0]);
Diletant 183:c7a9c309086c 2585 hashParamTable[747].hash = 0xcf8f9858;
Diletant 183:c7a9c309086c 2586 hashParamTable[747].ref = &device.tss.temperature.settings.transfer.raw[9];
Diletant 183:c7a9c309086c 2587 hashParamTable[747].size = sizeof(device.tss.temperature.settings.transfer.raw[9]);
Diletant 183:c7a9c309086c 2588 hashParamTable[748].hash = 0xcfc8a2e9;
Diletant 183:c7a9c309086c 2589 hashParamTable[748].ref = &device.lightUp.state.enabled;
Diletant 183:c7a9c309086c 2590 hashParamTable[748].size = sizeof(device.lightUp.state.enabled);
Diletant 183:c7a9c309086c 2591 hashParamTable[749].hash = 0xd004deaf;
Diletant 183:c7a9c309086c 2592 hashParamTable[749].ref = &device.isacs.output.settings.transfer.code[3];
Diletant 183:c7a9c309086c 2593 hashParamTable[749].size = sizeof(device.isacs.output.settings.transfer.code[3]);
Diletant 183:c7a9c309086c 2594 hashParamTable[750].hash = 0xd02480bc;
Diletant 183:c7a9c309086c 2595 hashParamTable[750].ref = &device.plcs.feedback.settings.transfer.raw[8];
Diletant 183:c7a9c309086c 2596 hashParamTable[750].size = sizeof(device.plcs.feedback.settings.transfer.raw[8]);
Diletant 183:c7a9c309086c 2597 hashParamTable[751].hash = 0xd02687e6;
Diletant 183:c7a9c309086c 2598 hashParamTable[751].ref = &device.plcs.bias.settings.transfer.raw[8];
Diletant 183:c7a9c309086c 2599 hashParamTable[751].size = sizeof(device.plcs.bias.settings.transfer.raw[8]);
Diletant 183:c7a9c309086c 2600 hashParamTable[752].hash = 0xd09e8bbe;
Diletant 183:c7a9c309086c 2601 hashParamTable[752].ref = &device.sequencer.sampler.settings.sequence[22];
Diletant 183:c7a9c309086c 2602 hashParamTable[752].size = sizeof(device.sequencer.sampler.settings.sequence[22]);
Diletant 183:c7a9c309086c 2603 hashParamTable[753].hash = 0xd0c47af6;
Diletant 183:c7a9c309086c 2604 hashParamTable[753].ref = &device.plcs.reset.down.settings.environment.temperature[10];
Diletant 183:c7a9c309086c 2605 hashParamTable[753].size = sizeof(device.plcs.reset.down.settings.environment.temperature[10]);
Diletant 183:c7a9c309086c 2606 hashParamTable[754].hash = 0xd0d14752;
Diletant 183:c7a9c309086c 2607 hashParamTable[754].ref = &device.sequencer.output.analog.settings.transfer.voltage[13];
Diletant 183:c7a9c309086c 2608 hashParamTable[754].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[13]);
Diletant 183:c7a9c309086c 2609 hashParamTable[755].hash = 0xd0e95fe1;
Diletant 183:c7a9c309086c 2610 hashParamTable[755].ref = &device.plcs.reset.up.settings.environment.target[8];
Diletant 183:c7a9c309086c 2611 hashParamTable[755].size = sizeof(device.plcs.reset.up.settings.environment.target[8]);
Diletant 183:c7a9c309086c 2612 hashParamTable[756].hash = 0xd1113e49;
Diletant 183:c7a9c309086c 2613 hashParamTable[756].ref = &device.plcs.reset.up.settings.environment.duration[5];
Diletant 183:c7a9c309086c 2614 hashParamTable[756].size = sizeof(device.plcs.reset.up.settings.environment.duration[5]);
Diletant 183:c7a9c309086c 2615 hashParamTable[757].hash = 0xd121b1f;
Diletant 183:c7a9c309086c 2616 hashParamTable[757].ref = &device.plcs.reset.up.settings.environment.trigger[7];
Diletant 183:c7a9c309086c 2617 hashParamTable[757].size = sizeof(device.plcs.reset.up.settings.environment.trigger[7]);
Diletant 183:c7a9c309086c 2618 hashParamTable[758].hash = 0xd14fa026;
Diletant 183:c7a9c309086c 2619 hashParamTable[758].ref = &device.controller.flash.settings.dataSector;
Diletant 183:c7a9c309086c 2620 hashParamTable[758].size = sizeof(device.controller.flash.settings.dataSector);
Diletant 183:c7a9c309086c 2621 hashParamTable[759].hash = 0xd15ce189;
Diletant 183:c7a9c309086c 2622 hashParamTable[759].ref = &device.sequencer.sampler.settings.sequence[32];
Diletant 183:c7a9c309086c 2623 hashParamTable[759].size = sizeof(device.sequencer.sampler.settings.sequence[32]);
Diletant 183:c7a9c309086c 2624 hashParamTable[760].hash = 0xd1a66dd9;
Diletant 183:c7a9c309086c 2625 hashParamTable[760].ref = &device.dither.frequency.settings.transfer.points;
Diletant 183:c7a9c309086c 2626 hashParamTable[760].size = sizeof(device.dither.frequency.settings.transfer.points);
Diletant 183:c7a9c309086c 2627 hashParamTable[761].hash = 0xd288ba7;
Diletant 183:c7a9c309086c 2628 hashParamTable[761].ref = &device.counters.meander.state.angle[1];
Diletant 183:c7a9c309086c 2629 hashParamTable[761].size = sizeof(device.counters.meander.state.angle[1]);
Diletant 183:c7a9c309086c 2630 hashParamTable[762].hash = 0xd2d835e7;
Diletant 183:c7a9c309086c 2631 hashParamTable[762].ref = &device.sequencer.sampler.settings.sequence[12];
Diletant 183:c7a9c309086c 2632 hashParamTable[762].size = sizeof(device.sequencer.sampler.settings.sequence[12]);
Diletant 183:c7a9c309086c 2633 hashParamTable[763].hash = 0xd31022a;
Diletant 183:c7a9c309086c 2634 hashParamTable[763].ref = &device.isacs.input.settings.transfer.V[6];
Diletant 183:c7a9c309086c 2635 hashParamTable[763].size = sizeof(device.isacs.input.settings.transfer.V[6]);
Diletant 183:c7a9c309086c 2636 hashParamTable[764].hash = 0xd3ab05de;
Diletant 183:c7a9c309086c 2637 hashParamTable[764].ref = &device.sequencer.sampler.settings.sequence[2];
Diletant 183:c7a9c309086c 2638 hashParamTable[764].size = sizeof(device.sequencer.sampler.settings.sequence[2]);
Diletant 183:c7a9c309086c 2639 hashParamTable[765].hash = 0xd3ce1d89;
Diletant 183:c7a9c309086c 2640 hashParamTable[765].ref = &device.isacs.output.settings.transfer.voltage[8];
Diletant 183:c7a9c309086c 2641 hashParamTable[765].size = sizeof(device.isacs.output.settings.transfer.voltage[8]);
Diletant 183:c7a9c309086c 2642 hashParamTable[766].hash = 0xd3f0265a;
Diletant 183:c7a9c309086c 2643 hashParamTable[766].ref = &device.dither.frequency.settings.transfer.error[7];
Diletant 183:c7a9c309086c 2644 hashParamTable[766].size = sizeof(device.dither.frequency.settings.transfer.error[7]);
Diletant 183:c7a9c309086c 2645 hashParamTable[767].hash = 0xd413f70c;
Diletant 183:c7a9c309086c 2646 hashParamTable[767].ref = &device.sequencer.sampler.settings.sequence[42];
Diletant 183:c7a9c309086c 2647 hashParamTable[767].size = sizeof(device.sequencer.sampler.settings.sequence[42]);
Diletant 183:c7a9c309086c 2648 hashParamTable[768].hash = 0xd4788a0c;
Diletant 183:c7a9c309086c 2649 hashParamTable[768].ref = &device.plcs.output.settings.transfer.voltage[3];
Diletant 183:c7a9c309086c 2650 hashParamTable[768].size = sizeof(device.plcs.output.settings.transfer.voltage[3]);
Diletant 183:c7a9c309086c 2651 hashParamTable[769].hash = 0xd48659f3;
Diletant 183:c7a9c309086c 2652 hashParamTable[769].ref = &device.tss.temperature.settings.transfer.raw[11];
Diletant 183:c7a9c309086c 2653 hashParamTable[769].size = sizeof(device.tss.temperature.settings.transfer.raw[11]);
Diletant 183:c7a9c309086c 2654 hashParamTable[770].hash = 0xd4b32f3e;
Diletant 183:c7a9c309086c 2655 hashParamTable[770].ref = &device.ccs.current[0].settings.transfer.mA[13];
Diletant 183:c7a9c309086c 2656 hashParamTable[770].size = sizeof(device.ccs.current[0].settings.transfer.mA[13]);
Diletant 183:c7a9c309086c 2657 hashParamTable[771].hash = 0xd5492a2f;
Diletant 183:c7a9c309086c 2658 hashParamTable[771].ref = &device.plcs.reset.down.settings.environment.duration[14];
Diletant 183:c7a9c309086c 2659 hashParamTable[771].size = sizeof(device.plcs.reset.down.settings.environment.duration[14]);
Diletant 183:c7a9c309086c 2660 hashParamTable[772].hash = 0xd5b5b733;
Diletant 183:c7a9c309086c 2661 hashParamTable[772].ref = &device.isacs.regulator.settings.transfer.correction[14];
Diletant 183:c7a9c309086c 2662 hashParamTable[772].size = sizeof(device.isacs.regulator.settings.transfer.correction[14]);
Diletant 183:c7a9c309086c 2663 hashParamTable[773].hash = 0xd5d19d3b;
Diletant 183:c7a9c309086c 2664 hashParamTable[773].ref = &device.sequencer.sampler.settings.sequence[52];
Diletant 183:c7a9c309086c 2665 hashParamTable[773].size = sizeof(device.sequencer.sampler.settings.sequence[52]);
Diletant 183:c7a9c309086c 2666 hashParamTable[774].hash = 0xd694a919;
Diletant 183:c7a9c309086c 2667 hashParamTable[774].ref = &device.tss.temperature.settings.transfer.raw[8];
Diletant 183:c7a9c309086c 2668 hashParamTable[774].size = sizeof(device.tss.temperature.settings.transfer.raw[8]);
Diletant 183:c7a9c309086c 2669 hashParamTable[775].hash = 0xd75c1683;
Diletant 183:c7a9c309086c 2670 hashParamTable[775].ref = &device.isacs.regulator.settings.transfer.error[12];
Diletant 183:c7a9c309086c 2671 hashParamTable[775].size = sizeof(device.isacs.regulator.settings.transfer.error[12]);
Diletant 183:c7a9c309086c 2672 hashParamTable[776].hash = 0xd7972362;
Diletant 183:c7a9c309086c 2673 hashParamTable[776].ref = &device.sequencer.sampler.settings.sequence[62];
Diletant 183:c7a9c309086c 2674 hashParamTable[776].size = sizeof(device.sequencer.sampler.settings.sequence[62]);
Diletant 183:c7a9c309086c 2675 hashParamTable[777].hash = 0xd7b7777b;
Diletant 183:c7a9c309086c 2676 hashParamTable[777].ref = &device.plcs.reset.up.settings.environment.temperature[9];
Diletant 183:c7a9c309086c 2677 hashParamTable[777].size = sizeof(device.plcs.reset.up.settings.environment.temperature[9]);
Diletant 183:c7a9c309086c 2678 hashParamTable[778].hash = 0xd7e1e3e9;
Diletant 183:c7a9c309086c 2679 hashParamTable[778].ref = &device.dither.detector.settings.transfer.restored[4];
Diletant 183:c7a9c309086c 2680 hashParamTable[778].size = sizeof(device.dither.detector.settings.transfer.restored[4]);
Diletant 183:c7a9c309086c 2681 hashParamTable[779].hash = 0xd914cf5e;
Diletant 183:c7a9c309086c 2682 hashParamTable[779].ref = &device.isacs.regulator.state.error;
Diletant 183:c7a9c309086c 2683 hashParamTable[779].size = sizeof(device.isacs.regulator.state.error);
Diletant 183:c7a9c309086c 2684 hashParamTable[780].hash = 0xd92502b6;
Diletant 183:c7a9c309086c 2685 hashParamTable[780].ref = &device.tss.temperature.settings.transfer.celsius[0];
Diletant 183:c7a9c309086c 2686 hashParamTable[780].size = sizeof(device.tss.temperature.settings.transfer.celsius[0]);
Diletant 183:c7a9c309086c 2687 hashParamTable[781].hash = 0xd956bbca;
Diletant 183:c7a9c309086c 2688 hashParamTable[781].ref = &device.sequencer.output.analog.settings.transfer.voltage[3];
Diletant 183:c7a9c309086c 2689 hashParamTable[781].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[3]);
Diletant 183:c7a9c309086c 2690 hashParamTable[782].hash = 0xd96cc3b4;
Diletant 183:c7a9c309086c 2691 hashParamTable[782].ref = &device.tss.gradient.settings.transfer.points;
Diletant 183:c7a9c309086c 2692 hashParamTable[782].size = sizeof(device.tss.gradient.settings.transfer.points);
Diletant 183:c7a9c309086c 2693 hashParamTable[783].hash = 0xd97ab424;
Diletant 183:c7a9c309086c 2694 hashParamTable[783].ref = &device.isacs.regulator.settings.transfer.correction[9];
Diletant 183:c7a9c309086c 2695 hashParamTable[783].size = sizeof(device.isacs.regulator.settings.transfer.correction[9]);
Diletant 183:c7a9c309086c 2696 hashParamTable[784].hash = 0xd9d47e4b;
Diletant 183:c7a9c309086c 2697 hashParamTable[784].ref = &device.isacs.input.state.sum;
Diletant 183:c7a9c309086c 2698 hashParamTable[784].size = sizeof(device.isacs.input.state.sum);
Diletant 183:c7a9c309086c 2699 hashParamTable[785].hash = 0xd9f23e1e;
Diletant 183:c7a9c309086c 2700 hashParamTable[785].ref = &device.plcs.feedback.settings.transfer.normalized[8];
Diletant 183:c7a9c309086c 2701 hashParamTable[785].size = sizeof(device.plcs.feedback.settings.transfer.normalized[8]);
Diletant 183:c7a9c309086c 2702 hashParamTable[786].hash = 0xda1c0f04;
Diletant 183:c7a9c309086c 2703 hashParamTable[786].ref = &device.tss.gradient.settings.transfer.raw[3];
Diletant 183:c7a9c309086c 2704 hashParamTable[786].size = sizeof(device.tss.gradient.settings.transfer.raw[3]);
Diletant 183:c7a9c309086c 2705 hashParamTable[787].hash = 0xda6632f4;
Diletant 183:c7a9c309086c 2706 hashParamTable[787].ref = &device.plcs.bias.settings.transfer.normalized[3];
Diletant 183:c7a9c309086c 2707 hashParamTable[787].size = sizeof(device.plcs.bias.settings.transfer.normalized[3]);
Diletant 183:c7a9c309086c 2708 hashParamTable[788].hash = 0xdaa1c323;
Diletant 183:c7a9c309086c 2709 hashParamTable[788].ref = &device.plcs.regulator.settings.transfer.error[2];
Diletant 183:c7a9c309086c 2710 hashParamTable[788].size = sizeof(device.plcs.regulator.settings.transfer.error[2]);
Diletant 183:c7a9c309086c 2711 hashParamTable[789].hash = 0xdaa38e1;
Diletant 183:c7a9c309086c 2712 hashParamTable[789].ref = &device.plcs.reset.down.settings.environment.trigger[4];
Diletant 183:c7a9c309086c 2713 hashParamTable[789].size = sizeof(device.plcs.reset.down.settings.environment.trigger[4]);
Diletant 183:c7a9c309086c 2714 hashParamTable[790].hash = 0xdb6250c2;
Diletant 183:c7a9c309086c 2715 hashParamTable[790].ref = &device.plcs.reset.down.settings.environment.temperature[3];
Diletant 183:c7a9c309086c 2716 hashParamTable[790].size = sizeof(device.plcs.reset.down.settings.environment.temperature[3]);
Diletant 183:c7a9c309086c 2717 hashParamTable[791].hash = 0xdb8486a8;
Diletant 183:c7a9c309086c 2718 hashParamTable[791].ref = &device.isacs.regulator.settings.reset.enabled;
Diletant 183:c7a9c309086c 2719 hashParamTable[791].size = sizeof(device.isacs.regulator.settings.reset.enabled);
Diletant 183:c7a9c309086c 2720 hashParamTable[792].hash = 0xdbdbd0f5;
Diletant 183:c7a9c309086c 2721 hashParamTable[792].ref = &device.sequencer.sampler.settings.amplitude;
Diletant 183:c7a9c309086c 2722 hashParamTable[792].size = sizeof(device.sequencer.sampler.settings.amplitude);
Diletant 183:c7a9c309086c 2723 hashParamTable[793].hash = 0xdc1b0dfc;
Diletant 183:c7a9c309086c 2724 hashParamTable[793].ref = &device.plcs.regulator.settings.reference;
Diletant 183:c7a9c309086c 2725 hashParamTable[793].size = sizeof(device.plcs.regulator.settings.reference);
Diletant 183:c7a9c309086c 2726 hashParamTable[794].hash = 0xdc27f931;
Diletant 183:c7a9c309086c 2727 hashParamTable[794].ref = &device.plcs.regulator.settings.transfer.points;
Diletant 183:c7a9c309086c 2728 hashParamTable[794].size = sizeof(device.plcs.regulator.settings.transfer.points);
Diletant 183:c7a9c309086c 2729 hashParamTable[795].hash = 0xdc2ebe7c;
Diletant 183:c7a9c309086c 2730 hashParamTable[795].ref = &device.ccs.current[0].settings.transfer.mA[1];
Diletant 183:c7a9c309086c 2731 hashParamTable[795].size = sizeof(device.ccs.current[0].settings.transfer.mA[1]);
Diletant 183:c7a9c309086c 2732 hashParamTable[796].hash = 0xdc420669;
Diletant 183:c7a9c309086c 2733 hashParamTable[796].ref = &device.plcs.regulator.settings.transfer.correction[13];
Diletant 183:c7a9c309086c 2734 hashParamTable[796].size = sizeof(device.plcs.regulator.settings.transfer.correction[13]);
Diletant 183:c7a9c309086c 2735 hashParamTable[797].hash = 0xdc5b0112;
Diletant 183:c7a9c309086c 2736 hashParamTable[797].ref = &device.sequencer.output.logic.settings.enabled;
Diletant 183:c7a9c309086c 2737 hashParamTable[797].size = sizeof(device.sequencer.output.logic.settings.enabled);
Diletant 183:c7a9c309086c 2738 hashParamTable[798].hash = 0xdc63d6ee;
Diletant 183:c7a9c309086c 2739 hashParamTable[798].ref = &device.plcs.bias.settings.transfer.raw[11];
Diletant 183:c7a9c309086c 2740 hashParamTable[798].size = sizeof(device.plcs.bias.settings.transfer.raw[11]);
Diletant 183:c7a9c309086c 2741 hashParamTable[799].hash = 0xdceeafd;
Diletant 183:c7a9c309086c 2742 hashParamTable[799].ref = &device.dither.detector.settings.filter.factor[7];
Diletant 183:c7a9c309086c 2743 hashParamTable[799].size = sizeof(device.dither.detector.settings.filter.factor[7]);
Diletant 183:c7a9c309086c 2744 hashParamTable[800].hash = 0xdd3a1bed;
Diletant 183:c7a9c309086c 2745 hashParamTable[800].ref = &device.dither.amplitude.settings.transfer.error[9];
Diletant 183:c7a9c309086c 2746 hashParamTable[800].size = sizeof(device.dither.amplitude.settings.transfer.error[9]);
Diletant 183:c7a9c309086c 2747 hashParamTable[801].hash = 0xdd73b0b5;
Diletant 183:c7a9c309086c 2748 hashParamTable[801].ref = &device.dither.amplitude.state.scale;
Diletant 183:c7a9c309086c 2749 hashParamTable[801].size = sizeof(device.dither.amplitude.state.scale);
Diletant 183:c7a9c309086c 2750 hashParamTable[802].hash = 0xdec0535;
Diletant 183:c7a9c309086c 2751 hashParamTable[802].ref = &device.ccs.current[0].settings.transfer.mA[8];
Diletant 183:c7a9c309086c 2752 hashParamTable[802].size = sizeof(device.ccs.current[0].settings.transfer.mA[8]);
Diletant 183:c7a9c309086c 2753 hashParamTable[803].hash = 0xdef61523;
Diletant 183:c7a9c309086c 2754 hashParamTable[803].ref = &device.plcs.output.settings.transfer.code[8];
Diletant 183:c7a9c309086c 2755 hashParamTable[803].size = sizeof(device.plcs.output.settings.transfer.code[8]);
Diletant 183:c7a9c309086c 2756 hashParamTable[804].hash = 0xdf0840ae;
Diletant 183:c7a9c309086c 2757 hashParamTable[804].ref = &device.plcs.reset.down.settings.environment.duration[3];
Diletant 183:c7a9c309086c 2758 hashParamTable[804].size = sizeof(device.plcs.reset.down.settings.environment.duration[3]);
Diletant 183:c7a9c309086c 2759 hashParamTable[805].hash = 0xdf13853a;
Diletant 183:c7a9c309086c 2760 hashParamTable[805].ref = &device.dither.frequency.state.scale;
Diletant 183:c7a9c309086c 2761 hashParamTable[805].size = sizeof(device.dither.frequency.state.scale);
Diletant 183:c7a9c309086c 2762 hashParamTable[806].hash = 0xdf27dd88;
Diletant 183:c7a9c309086c 2763 hashParamTable[806].ref = &device.ccs.current[0].settings.transfer.raw[15];
Diletant 183:c7a9c309086c 2764 hashParamTable[806].size = sizeof(device.ccs.current[0].settings.transfer.raw[15]);
Diletant 183:c7a9c309086c 2765 hashParamTable[807].hash = 0xdf28a1b5;
Diletant 183:c7a9c309086c 2766 hashParamTable[807].ref = &device.counters.dither.state.delta[5];
Diletant 183:c7a9c309086c 2767 hashParamTable[807].size = sizeof(device.counters.dither.state.delta[5]);
Diletant 183:c7a9c309086c 2768 hashParamTable[808].hash = 0xdf36e262;
Diletant 183:c7a9c309086c 2769 hashParamTable[808].ref = &device.isacs.output.settings.transfer.code[11];
Diletant 183:c7a9c309086c 2770 hashParamTable[808].size = sizeof(device.isacs.output.settings.transfer.code[11]);
Diletant 183:c7a9c309086c 2771 hashParamTable[809].hash = 0xdfa31407;
Diletant 183:c7a9c309086c 2772 hashParamTable[809].ref = &device.sequencer.output.analog.settings.transfer.code[0];
Diletant 183:c7a9c309086c 2773 hashParamTable[809].size = sizeof(device.sequencer.output.analog.settings.transfer.code[0]);
Diletant 183:c7a9c309086c 2774 hashParamTable[810].hash = 0xdfb1816;
Diletant 183:c7a9c309086c 2775 hashParamTable[810].ref = &device.counters.dither.state.delta[12];
Diletant 183:c7a9c309086c 2776 hashParamTable[810].size = sizeof(device.counters.dither.state.delta[12]);
Diletant 183:c7a9c309086c 2777 hashParamTable[811].hash = 0xdfb1e2e8;
Diletant 183:c7a9c309086c 2778 hashParamTable[811].ref = &device.dither.frequency.settings.transfer.correction[5];
Diletant 183:c7a9c309086c 2779 hashParamTable[811].size = sizeof(device.dither.frequency.settings.transfer.correction[5]);
Diletant 183:c7a9c309086c 2780 hashParamTable[812].hash = 0xdfb59769;
Diletant 183:c7a9c309086c 2781 hashParamTable[812].ref = &device.tss.gradient.settings.transfer.raw[15];
Diletant 183:c7a9c309086c 2782 hashParamTable[812].size = sizeof(device.tss.gradient.settings.transfer.raw[15]);
Diletant 183:c7a9c309086c 2783 hashParamTable[813].hash = 0xe0354248;
Diletant 183:c7a9c309086c 2784 hashParamTable[813].ref = &device.ccs.current[0].state.sum;
Diletant 183:c7a9c309086c 2785 hashParamTable[813].size = sizeof(device.ccs.current[0].state.sum);
Diletant 183:c7a9c309086c 2786 hashParamTable[814].hash = 0xe0dc3b87;
Diletant 183:c7a9c309086c 2787 hashParamTable[814].ref = &device.plcs.bias.state.counter;
Diletant 183:c7a9c309086c 2788 hashParamTable[814].size = sizeof(device.plcs.bias.state.counter);
Diletant 183:c7a9c309086c 2789 hashParamTable[815].hash = 0xe0ee5765;
Diletant 183:c7a9c309086c 2790 hashParamTable[815].ref = &device.sequencer.sampler.settings.sequence[10];
Diletant 183:c7a9c309086c 2791 hashParamTable[815].size = sizeof(device.sequencer.sampler.settings.sequence[10]);
Diletant 183:c7a9c309086c 2792 hashParamTable[816].hash = 0xe184f3dc;
Diletant 183:c7a9c309086c 2793 hashParamTable[816].ref = &device.tss.temperature.settings.transfer.celsius[14];
Diletant 183:c7a9c309086c 2794 hashParamTable[816].size = sizeof(device.tss.temperature.settings.transfer.celsius[14]);
Diletant 183:c7a9c309086c 2795 hashParamTable[817].hash = 0xe19d675c;
Diletant 183:c7a9c309086c 2796 hashParamTable[817].ref = &device.sequencer.sampler.settings.sequence[0];
Diletant 183:c7a9c309086c 2797 hashParamTable[817].size = sizeof(device.sequencer.sampler.settings.sequence[0]);
Diletant 183:c7a9c309086c 2798 hashParamTable[818].hash = 0xe1c644d8;
Diletant 183:c7a9c309086c 2799 hashParamTable[818].ref = &device.dither.frequency.settings.transfer.error[5];
Diletant 183:c7a9c309086c 2800 hashParamTable[818].size = sizeof(device.dither.frequency.settings.transfer.error[5]);
Diletant 183:c7a9c309086c 2801 hashParamTable[819].hash = 0xe232bc2d;
Diletant 183:c7a9c309086c 2802 hashParamTable[819].ref = &device.isacs.output.settings.transfer.code[1];
Diletant 183:c7a9c309086c 2803 hashParamTable[819].size = sizeof(device.isacs.output.settings.transfer.code[1]);
Diletant 183:c7a9c309086c 2804 hashParamTable[820].hash = 0xe2a8e93c;
Diletant 183:c7a9c309086c 2805 hashParamTable[820].ref = &device.sequencer.sampler.settings.sequence[20];
Diletant 183:c7a9c309086c 2806 hashParamTable[820].size = sizeof(device.sequencer.sampler.settings.sequence[20]);
Diletant 183:c7a9c309086c 2807 hashParamTable[821].hash = 0xe2e725d0;
Diletant 183:c7a9c309086c 2808 hashParamTable[821].ref = &device.sequencer.output.analog.settings.transfer.voltage[11];
Diletant 183:c7a9c309086c 2809 hashParamTable[821].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[11]);
Diletant 183:c7a9c309086c 2810 hashParamTable[822].hash = 0xe2f21874;
Diletant 183:c7a9c309086c 2811 hashParamTable[822].ref = &device.plcs.reset.down.settings.environment.temperature[12];
Diletant 183:c7a9c309086c 2812 hashParamTable[822].size = sizeof(device.plcs.reset.down.settings.environment.temperature[12]);
Diletant 183:c7a9c309086c 2813 hashParamTable[823].hash = 0xe3275ccb;
Diletant 183:c7a9c309086c 2814 hashParamTable[823].ref = &device.plcs.reset.up.settings.environment.duration[7];
Diletant 183:c7a9c309086c 2815 hashParamTable[823].size = sizeof(device.plcs.reset.up.settings.environment.duration[7]);
Diletant 183:c7a9c309086c 2816 hashParamTable[824].hash = 0xe34cfca4;
Diletant 183:c7a9c309086c 2817 hashParamTable[824].ref = &device.dither.detector.settings.transfer.raw[9];
Diletant 183:c7a9c309086c 2818 hashParamTable[824].size = sizeof(device.dither.detector.settings.transfer.raw[9]);
Diletant 183:c7a9c309086c 2819 hashParamTable[825].hash = 0xe369804d;
Diletant 183:c7a9c309086c 2820 hashParamTable[825].ref = &device.user.port.settings.baud;
Diletant 183:c7a9c309086c 2821 hashParamTable[825].size = sizeof(device.user.port.settings.baud);
Diletant 183:c7a9c309086c 2822 hashParamTable[826].hash = 0xe36a830b;
Diletant 183:c7a9c309086c 2823 hashParamTable[826].ref = &device.sequencer.sampler.settings.sequence[30];
Diletant 183:c7a9c309086c 2824 hashParamTable[826].size = sizeof(device.sequencer.sampler.settings.sequence[30]);
Diletant 183:c7a9c309086c 2825 hashParamTable[827].hash = 0xe431dbcd;
Diletant 183:c7a9c309086c 2826 hashParamTable[827].ref = &device.isacs.regulator.state.correction;
Diletant 183:c7a9c309086c 2827 hashParamTable[827].size = sizeof(device.isacs.regulator.state.correction);
Diletant 183:c7a9c309086c 2828 hashParamTable[828].hash = 0xe49c97ed;
Diletant 183:c7a9c309086c 2829 hashParamTable[828].ref = &device.isacs.potentiometers.settings.b;
Diletant 183:c7a9c309086c 2830 hashParamTable[828].size = sizeof(device.isacs.potentiometers.settings.b);
Diletant 183:c7a9c309086c 2831 hashParamTable[829].hash = 0xe55b8142;
Diletant 183:c7a9c309086c 2832 hashParamTable[829].ref = &device.plcs.detector.state.in[0];
Diletant 183:c7a9c309086c 2833 hashParamTable[829].size = sizeof(device.plcs.detector.state.in[0]);
Diletant 183:c7a9c309086c 2834 hashParamTable[830].hash = 0xe56a7401;
Diletant 183:c7a9c309086c 2835 hashParamTable[830].ref = &device.isacs.regulator.settings.transfer.error[10];
Diletant 183:c7a9c309086c 2836 hashParamTable[830].size = sizeof(device.isacs.regulator.settings.transfer.error[10]);
Diletant 183:c7a9c309086c 2837 hashParamTable[831].hash = 0xe5d7816b;
Diletant 183:c7a9c309086c 2838 hashParamTable[831].ref = &device.dither.detector.settings.transfer.restored[6];
Diletant 183:c7a9c309086c 2839 hashParamTable[831].size = sizeof(device.dither.detector.settings.transfer.restored[6]);
Diletant 183:c7a9c309086c 2840 hashParamTable[832].hash = 0xe60d989f;
Diletant 183:c7a9c309086c 2841 hashParamTable[832].ref = &device.isacs.output.state.voltage;
Diletant 183:c7a9c309086c 2842 hashParamTable[832].size = sizeof(device.isacs.output.state.voltage);
Diletant 183:c7a9c309086c 2843 hashParamTable[833].hash = 0xe61af4e;
Diletant 183:c7a9c309086c 2844 hashParamTable[833].ref = &device.sequencer.output.analog.settings.transfer.code[9];
Diletant 183:c7a9c309086c 2845 hashParamTable[833].size = sizeof(device.sequencer.output.analog.settings.transfer.code[9]);
Diletant 183:c7a9c309086c 2846 hashParamTable[834].hash = 0xe625958e;
Diletant 183:c7a9c309086c 2847 hashParamTable[834].ref = &device.sequencer.sampler.settings.sequence[40];
Diletant 183:c7a9c309086c 2848 hashParamTable[834].size = sizeof(device.sequencer.sampler.settings.sequence[40]);
Diletant 183:c7a9c309086c 2849 hashParamTable[835].hash = 0xe64ee88e;
Diletant 183:c7a9c309086c 2850 hashParamTable[835].ref = &device.plcs.output.settings.transfer.voltage[1];
Diletant 183:c7a9c309086c 2851 hashParamTable[835].size = sizeof(device.plcs.output.settings.transfer.voltage[1]);
Diletant 183:c7a9c309086c 2852 hashParamTable[836].hash = 0xe64f1401;
Diletant 183:c7a9c309086c 2853 hashParamTable[836].ref = &device.dither.cycle.state.pin1;
Diletant 183:c7a9c309086c 2854 hashParamTable[836].size = sizeof(device.dither.cycle.state.pin1);
Diletant 183:c7a9c309086c 2855 hashParamTable[837].hash = 0xe6854dbc;
Diletant 183:c7a9c309086c 2856 hashParamTable[837].ref = &device.ccs.current[0].settings.transfer.mA[11];
Diletant 183:c7a9c309086c 2857 hashParamTable[837].size = sizeof(device.ccs.current[0].settings.transfer.mA[11]);
Diletant 183:c7a9c309086c 2858 hashParamTable[838].hash = 0xe6b03b71;
Diletant 183:c7a9c309086c 2859 hashParamTable[838].ref = &device.tss.temperature.settings.transfer.raw[13];
Diletant 183:c7a9c309086c 2860 hashParamTable[838].size = sizeof(device.tss.temperature.settings.transfer.raw[13]);
Diletant 183:c7a9c309086c 2861 hashParamTable[839].hash = 0xe723ebb2;
Diletant 183:c7a9c309086c 2862 hashParamTable[839].ref = &device.sequencer.sampler.state.sample[1];
Diletant 183:c7a9c309086c 2863 hashParamTable[839].size = sizeof(device.sequencer.sampler.state.sample[1]);
Diletant 183:c7a9c309086c 2864 hashParamTable[840].hash = 0xe74ab9c4;
Diletant 183:c7a9c309086c 2865 hashParamTable[840].ref = &device.tss.gradient.settings.transfer.celsius[9];
Diletant 183:c7a9c309086c 2866 hashParamTable[840].size = sizeof(device.tss.gradient.settings.transfer.celsius[9]);
Diletant 183:c7a9c309086c 2867 hashParamTable[841].hash = 0xe7a2d87;
Diletant 183:c7a9c309086c 2868 hashParamTable[841].ref = &device.counters.latch.state.format;
Diletant 183:c7a9c309086c 2869 hashParamTable[841].size = sizeof(device.counters.latch.state.format);
Diletant 183:c7a9c309086c 2870 hashParamTable[842].hash = 0xe7e7ffb9;
Diletant 183:c7a9c309086c 2871 hashParamTable[842].ref = &device.sequencer.sampler.settings.sequence[50];
Diletant 183:c7a9c309086c 2872 hashParamTable[842].size = sizeof(device.sequencer.sampler.settings.sequence[50]);
Diletant 183:c7a9c309086c 2873 hashParamTable[843].hash = 0xe7f0684b;
Diletant 183:c7a9c309086c 2874 hashParamTable[843].ref = &device.isacs.regulator.settings.start.reference;
Diletant 183:c7a9c309086c 2875 hashParamTable[843].size = sizeof(device.isacs.regulator.settings.start.reference);
Diletant 183:c7a9c309086c 2876 hashParamTable[844].hash = 0xe82a6d86;
Diletant 183:c7a9c309086c 2877 hashParamTable[844].ref = &device.tss.gradient.settings.transfer.raw[1];
Diletant 183:c7a9c309086c 2878 hashParamTable[844].size = sizeof(device.tss.gradient.settings.transfer.raw[1]);
Diletant 183:c7a9c309086c 2879 hashParamTable[845].hash = 0xe8505076;
Diletant 183:c7a9c309086c 2880 hashParamTable[845].ref = &device.plcs.bias.settings.transfer.normalized[1];
Diletant 183:c7a9c309086c 2881 hashParamTable[845].size = sizeof(device.plcs.bias.settings.transfer.normalized[1]);
Diletant 183:c7a9c309086c 2882 hashParamTable[846].hash = 0xe897a1a1;
Diletant 183:c7a9c309086c 2883 hashParamTable[846].ref = &device.plcs.regulator.settings.transfer.error[0];
Diletant 183:c7a9c309086c 2884 hashParamTable[846].size = sizeof(device.plcs.regulator.settings.transfer.error[0]);
Diletant 183:c7a9c309086c 2885 hashParamTable[847].hash = 0xe8d8c11a;
Diletant 183:c7a9c309086c 2886 hashParamTable[847].ref = &device.plcs.reset.down.settings.environment.target[9];
Diletant 183:c7a9c309086c 2887 hashParamTable[847].size = sizeof(device.plcs.reset.down.settings.environment.target[9]);
Diletant 183:c7a9c309086c 2888 hashParamTable[848].hash = 0xe9543240;
Diletant 183:c7a9c309086c 2889 hashParamTable[848].ref = &device.plcs.reset.down.settings.environment.temperature[1];
Diletant 183:c7a9c309086c 2890 hashParamTable[848].size = sizeof(device.plcs.reset.down.settings.environment.temperature[1]);
Diletant 183:c7a9c309086c 2891 hashParamTable[849].hash = 0xe9c143c;
Diletant 183:c7a9c309086c 2892 hashParamTable[849].ref = &device.service.port.settings.baud;
Diletant 183:c7a9c309086c 2893 hashParamTable[849].size = sizeof(device.service.port.settings.baud);
Diletant 183:c7a9c309086c 2894 hashParamTable[850].hash = 0xe9feab5;
Diletant 183:c7a9c309086c 2895 hashParamTable[850].ref = &device.dither.frequency.state.min;
Diletant 183:c7a9c309086c 2896 hashParamTable[850].size = sizeof(device.dither.frequency.state.min);
Diletant 183:c7a9c309086c 2897 hashParamTable[851].hash = 0xeae5bf6a;
Diletant 183:c7a9c309086c 2898 hashParamTable[851].ref = &device.controller.I2C.state.CON0;
Diletant 183:c7a9c309086c 2899 hashParamTable[851].size = sizeof(device.controller.I2C.state.CON0);
Diletant 183:c7a9c309086c 2900 hashParamTable[852].hash = 0xeb136034;
Diletant 183:c7a9c309086c 2901 hashParamTable[852].ref = &device.tss.temperature.settings.transfer.celsius[2];
Diletant 183:c7a9c309086c 2902 hashParamTable[852].size = sizeof(device.tss.temperature.settings.transfer.celsius[2]);
Diletant 183:c7a9c309086c 2903 hashParamTable[853].hash = 0xeb60d948;
Diletant 183:c7a9c309086c 2904 hashParamTable[853].ref = &device.sequencer.output.analog.settings.transfer.voltage[1];
Diletant 183:c7a9c309086c 2905 hashParamTable[853].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[1]);
Diletant 183:c7a9c309086c 2906 hashParamTable[854].hash = 0xec497f84;
Diletant 183:c7a9c309086c 2907 hashParamTable[854].ref = &device.counters.dither.state.delta[29];
Diletant 183:c7a9c309086c 2908 hashParamTable[854].size = sizeof(device.counters.dither.state.delta[29]);
Diletant 183:c7a9c309086c 2909 hashParamTable[855].hash = 0xed0080e0;
Diletant 183:c7a9c309086c 2910 hashParamTable[855].ref = &device.isacs.output.settings.transfer.code[13];
Diletant 183:c7a9c309086c 2911 hashParamTable[855].size = sizeof(device.isacs.output.settings.transfer.code[13]);
Diletant 183:c7a9c309086c 2912 hashParamTable[856].hash = 0xed1ec337;
Diletant 183:c7a9c309086c 2913 hashParamTable[856].ref = &device.counters.dither.state.delta[7];
Diletant 183:c7a9c309086c 2914 hashParamTable[856].size = sizeof(device.counters.dither.state.delta[7]);
Diletant 183:c7a9c309086c 2915 hashParamTable[857].hash = 0xed3e222c;
Diletant 183:c7a9c309086c 2916 hashParamTable[857].ref = &device.plcs.reset.down.settings.environment.duration[1];
Diletant 183:c7a9c309086c 2917 hashParamTable[857].size = sizeof(device.plcs.reset.down.settings.environment.duration[1]);
Diletant 183:c7a9c309086c 2918 hashParamTable[858].hash = 0xed87806a;
Diletant 183:c7a9c309086c 2919 hashParamTable[858].ref = &device.dither.frequency.settings.transfer.correction[7];
Diletant 183:c7a9c309086c 2920 hashParamTable[858].size = sizeof(device.dither.frequency.settings.transfer.correction[7]);
Diletant 183:c7a9c309086c 2921 hashParamTable[859].hash = 0xed95321c;
Diletant 183:c7a9c309086c 2922 hashParamTable[859].ref = &device.isacs.potentiometers.state.b;
Diletant 183:c7a9c309086c 2923 hashParamTable[859].size = sizeof(device.isacs.potentiometers.state.b);
Diletant 183:c7a9c309086c 2924 hashParamTable[860].hash = 0xed957685;
Diletant 183:c7a9c309086c 2925 hashParamTable[860].ref = &device.sequencer.output.analog.settings.transfer.code[2];
Diletant 183:c7a9c309086c 2926 hashParamTable[860].size = sizeof(device.sequencer.output.analog.settings.transfer.code[2]);
Diletant 183:c7a9c309086c 2927 hashParamTable[861].hash = 0xed9a9821;
Diletant 183:c7a9c309086c 2928 hashParamTable[861].ref = &device.plcs.output.settings.transfer.voltage[14];
Diletant 183:c7a9c309086c 2929 hashParamTable[861].size = sizeof(device.plcs.output.settings.transfer.voltage[14]);
Diletant 183:c7a9c309086c 2930 hashParamTable[862].hash = 0xee0fc1dd;
Diletant 183:c7a9c309086c 2931 hashParamTable[862].ref = &device.counters.dither.state.delta[19];
Diletant 183:c7a9c309086c 2932 hashParamTable[862].size = sizeof(device.counters.dither.state.delta[19]);
Diletant 183:c7a9c309086c 2933 hashParamTable[863].hash = 0xee18dcfe;
Diletant 183:c7a9c309086c 2934 hashParamTable[863].ref = &device.ccs.current[0].settings.transfer.mA[3];
Diletant 183:c7a9c309086c 2935 hashParamTable[863].size = sizeof(device.ccs.current[0].settings.transfer.mA[3]);
Diletant 183:c7a9c309086c 2936 hashParamTable[864].hash = 0xee55b46c;
Diletant 183:c7a9c309086c 2937 hashParamTable[864].ref = &device.plcs.bias.settings.transfer.raw[13];
Diletant 183:c7a9c309086c 2938 hashParamTable[864].size = sizeof(device.plcs.bias.settings.transfer.raw[13]);
Diletant 183:c7a9c309086c 2939 hashParamTable[865].hash = 0xee7464eb;
Diletant 183:c7a9c309086c 2940 hashParamTable[865].ref = &device.plcs.regulator.settings.transfer.correction[11];
Diletant 183:c7a9c309086c 2941 hashParamTable[865].size = sizeof(device.plcs.regulator.settings.transfer.correction[11]);
Diletant 183:c7a9c309086c 2942 hashParamTable[866].hash = 0xef2df638;
Diletant 183:c7a9c309086c 2943 hashParamTable[866].ref = &device.isacs.input.settings.transfer.raw[15];
Diletant 183:c7a9c309086c 2944 hashParamTable[866].size = sizeof(device.isacs.input.settings.transfer.raw[15]);
Diletant 183:c7a9c309086c 2945 hashParamTable[867].hash = 0xefa43838;
Diletant 183:c7a9c309086c 2946 hashParamTable[867].ref = &device.plcs.reset.up.settings.environment.duration[14];
Diletant 183:c7a9c309086c 2947 hashParamTable[867].size = sizeof(device.plcs.reset.up.settings.environment.duration[14]);
Diletant 183:c7a9c309086c 2948 hashParamTable[868].hash = 0xf04f0301;
Diletant 183:c7a9c309086c 2949 hashParamTable[868].ref = &device.plcs.reset.down.settings.environment.temperature[0];
Diletant 183:c7a9c309086c 2950 hashParamTable[868].size = sizeof(device.plcs.reset.down.settings.environment.temperature[0]);
Diletant 183:c7a9c309086c 2951 hashParamTable[869].hash = 0xf1315cc7;
Diletant 183:c7a9c309086c 2952 hashParamTable[869].ref = &device.tss.gradient.settings.transfer.raw[0];
Diletant 183:c7a9c309086c 2953 hashParamTable[869].size = sizeof(device.tss.gradient.settings.transfer.raw[0]);
Diletant 183:c7a9c309086c 2954 hashParamTable[870].hash = 0xf14b6137;
Diletant 183:c7a9c309086c 2955 hashParamTable[870].ref = &device.plcs.bias.settings.transfer.normalized[0];
Diletant 183:c7a9c309086c 2956 hashParamTable[870].size = sizeof(device.plcs.bias.settings.transfer.normalized[0]);
Diletant 183:c7a9c309086c 2957 hashParamTable[871].hash = 0xf18c90e0;
Diletant 183:c7a9c309086c 2958 hashParamTable[871].ref = &device.plcs.regulator.settings.transfer.error[1];
Diletant 183:c7a9c309086c 2959 hashParamTable[871].size = sizeof(device.plcs.regulator.settings.transfer.error[1]);
Diletant 183:c7a9c309086c 2960 hashParamTable[872].hash = 0xf1c3f05b;
Diletant 183:c7a9c309086c 2961 hashParamTable[872].ref = &device.plcs.reset.down.settings.environment.target[8];
Diletant 183:c7a9c309086c 2962 hashParamTable[872].size = sizeof(device.plcs.reset.down.settings.environment.target[8]);
Diletant 183:c7a9c309086c 2963 hashParamTable[873].hash = 0xf2085175;
Diletant 183:c7a9c309086c 2964 hashParamTable[873].ref = &device.tss.temperature.settings.transfer.celsius[3];
Diletant 183:c7a9c309086c 2965 hashParamTable[873].size = sizeof(device.tss.temperature.settings.transfer.celsius[3]);
Diletant 183:c7a9c309086c 2966 hashParamTable[874].hash = 0xf27be809;
Diletant 183:c7a9c309086c 2967 hashParamTable[874].ref = &device.sequencer.output.analog.settings.transfer.voltage[0];
Diletant 183:c7a9c309086c 2968 hashParamTable[874].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[0]);
Diletant 183:c7a9c309086c 2969 hashParamTable[875].hash = 0xf34ae6a;
Diletant 183:c7a9c309086c 2970 hashParamTable[875].ref = &device.plcs.output.settings.transfer.code[1];
Diletant 183:c7a9c309086c 2971 hashParamTable[875].size = sizeof(device.plcs.output.settings.transfer.code[1]);
Diletant 183:c7a9c309086c 2972 hashParamTable[876].hash = 0xf405f276;
Diletant 183:c7a9c309086c 2973 hashParamTable[876].ref = &device.counters.dither.state.delta[6];
Diletant 183:c7a9c309086c 2974 hashParamTable[876].size = sizeof(device.counters.dither.state.delta[6]);
Diletant 183:c7a9c309086c 2975 hashParamTable[877].hash = 0xf41bb1a1;
Diletant 183:c7a9c309086c 2976 hashParamTable[877].ref = &device.isacs.output.settings.transfer.code[12];
Diletant 183:c7a9c309086c 2977 hashParamTable[877].size = sizeof(device.isacs.output.settings.transfer.code[12]);
Diletant 183:c7a9c309086c 2978 hashParamTable[878].hash = 0xf425136d;
Diletant 183:c7a9c309086c 2979 hashParamTable[878].ref = &device.plcs.reset.down.settings.environment.duration[0];
Diletant 183:c7a9c309086c 2980 hashParamTable[878].size = sizeof(device.plcs.reset.down.settings.environment.duration[0]);
Diletant 183:c7a9c309086c 2981 hashParamTable[879].hash = 0xf481a960;
Diletant 183:c7a9c309086c 2982 hashParamTable[879].ref = &device.plcs.output.settings.transfer.voltage[15];
Diletant 183:c7a9c309086c 2983 hashParamTable[879].size = sizeof(device.plcs.output.settings.transfer.voltage[15]);
Diletant 183:c7a9c309086c 2984 hashParamTable[880].hash = 0xf48e47c4;
Diletant 183:c7a9c309086c 2985 hashParamTable[880].ref = &device.sequencer.output.analog.settings.transfer.code[3];
Diletant 183:c7a9c309086c 2986 hashParamTable[880].size = sizeof(device.sequencer.output.analog.settings.transfer.code[3]);
Diletant 183:c7a9c309086c 2987 hashParamTable[881].hash = 0xf49cb12b;
Diletant 183:c7a9c309086c 2988 hashParamTable[881].ref = &device.dither.frequency.settings.transfer.correction[6];
Diletant 183:c7a9c309086c 2989 hashParamTable[881].size = sizeof(device.dither.frequency.settings.transfer.correction[6]);
Diletant 183:c7a9c309086c 2990 hashParamTable[882].hash = 0xf5502fff;
Diletant 183:c7a9c309086c 2991 hashParamTable[882].ref = &device.plcs.reference.settings.delta;
Diletant 183:c7a9c309086c 2992 hashParamTable[882].size = sizeof(device.plcs.reference.settings.delta);
Diletant 183:c7a9c309086c 2993 hashParamTable[883].hash = 0xf5524ec5;
Diletant 183:c7a9c309086c 2994 hashParamTable[883].ref = &device.counters.dither.state.delta[28];
Diletant 183:c7a9c309086c 2995 hashParamTable[883].size = sizeof(device.counters.dither.state.delta[28]);
Diletant 183:c7a9c309086c 2996 hashParamTable[884].hash = 0xf636c779;
Diletant 183:c7a9c309086c 2997 hashParamTable[884].ref = &device.isacs.input.settings.transfer.raw[14];
Diletant 183:c7a9c309086c 2998 hashParamTable[884].size = sizeof(device.isacs.input.settings.transfer.raw[14]);
Diletant 183:c7a9c309086c 2999 hashParamTable[885].hash = 0xf6bf0979;
Diletant 183:c7a9c309086c 3000 hashParamTable[885].ref = &device.plcs.reset.up.settings.environment.duration[15];
Diletant 183:c7a9c309086c 3001 hashParamTable[885].size = sizeof(device.plcs.reset.up.settings.environment.duration[15]);
Diletant 183:c7a9c309086c 3002 hashParamTable[886].hash = 0xf703edbf;
Diletant 183:c7a9c309086c 3003 hashParamTable[886].ref = &device.ccs.current[0].settings.transfer.mA[2];
Diletant 183:c7a9c309086c 3004 hashParamTable[886].size = sizeof(device.ccs.current[0].settings.transfer.mA[2]);
Diletant 183:c7a9c309086c 3005 hashParamTable[887].hash = 0xf714f09c;
Diletant 183:c7a9c309086c 3006 hashParamTable[887].ref = &device.counters.dither.state.delta[18];
Diletant 183:c7a9c309086c 3007 hashParamTable[887].size = sizeof(device.counters.dither.state.delta[18]);
Diletant 183:c7a9c309086c 3008 hashParamTable[888].hash = 0xf74e852d;
Diletant 183:c7a9c309086c 3009 hashParamTable[888].ref = &device.plcs.bias.settings.transfer.raw[12];
Diletant 183:c7a9c309086c 3010 hashParamTable[888].size = sizeof(device.plcs.bias.settings.transfer.raw[12]);
Diletant 183:c7a9c309086c 3011 hashParamTable[889].hash = 0xf76f55aa;
Diletant 183:c7a9c309086c 3012 hashParamTable[889].ref = &device.plcs.regulator.settings.transfer.correction[10];
Diletant 183:c7a9c309086c 3013 hashParamTable[889].size = sizeof(device.plcs.regulator.settings.transfer.correction[10]);
Diletant 183:c7a9c309086c 3014 hashParamTable[890].hash = 0xf7b52f6;
Diletant 183:c7a9c309086c 3015 hashParamTable[890].ref = &device.plcs.regulator.settings.transfer.correction[6];
Diletant 183:c7a9c309086c 3016 hashParamTable[890].size = sizeof(device.plcs.regulator.settings.transfer.correction[6]);
Diletant 183:c7a9c309086c 3017 hashParamTable[891].hash = 0xf886561d;
Diletant 183:c7a9c309086c 3018 hashParamTable[891].ref = &device.sequencer.sampler.settings.sequence[1];
Diletant 183:c7a9c309086c 3019 hashParamTable[891].size = sizeof(device.sequencer.sampler.settings.sequence[1]);
Diletant 183:c7a9c309086c 3020 hashParamTable[892].hash = 0xf89fc29d;
Diletant 183:c7a9c309086c 3021 hashParamTable[892].ref = &device.tss.temperature.settings.transfer.celsius[15];
Diletant 183:c7a9c309086c 3022 hashParamTable[892].size = sizeof(device.tss.temperature.settings.transfer.celsius[15]);
Diletant 183:c7a9c309086c 3023 hashParamTable[893].hash = 0xf8dd7599;
Diletant 183:c7a9c309086c 3024 hashParamTable[893].ref = &device.dither.frequency.settings.transfer.error[4];
Diletant 183:c7a9c309086c 3025 hashParamTable[893].size = sizeof(device.dither.frequency.settings.transfer.error[4]);
Diletant 183:c7a9c309086c 3026 hashParamTable[894].hash = 0xf9a06cb9;
Diletant 183:c7a9c309086c 3027 hashParamTable[894].ref = &device.counters.latch.state.enabled;
Diletant 183:c7a9c309086c 3028 hashParamTable[894].size = sizeof(device.counters.latch.state.enabled);
Diletant 183:c7a9c309086c 3029 hashParamTable[895].hash = 0xf9b4d01;
Diletant 183:c7a9c309086c 3030 hashParamTable[895].ref = &device.counters.meander.state.b;
Diletant 183:c7a9c309086c 3031 hashParamTable[895].size = sizeof(device.counters.meander.state.b);
Diletant 183:c7a9c309086c 3032 hashParamTable[896].hash = 0xf9f56624;
Diletant 183:c7a9c309086c 3033 hashParamTable[896].ref = &device.sequencer.sampler.settings.sequence[11];
Diletant 183:c7a9c309086c 3034 hashParamTable[896].size = sizeof(device.sequencer.sampler.settings.sequence[11]);
Diletant 183:c7a9c309086c 3035 hashParamTable[897].hash = 0xfa3c6d8a;
Diletant 183:c7a9c309086c 3036 hashParamTable[897].ref = &device.plcs.reset.up.settings.environment.duration[6];
Diletant 183:c7a9c309086c 3037 hashParamTable[897].size = sizeof(device.plcs.reset.up.settings.environment.duration[6]);
Diletant 183:c7a9c309086c 3038 hashParamTable[898].hash = 0xfa57cde5;
Diletant 183:c7a9c309086c 3039 hashParamTable[898].ref = &device.dither.detector.settings.transfer.raw[8];
Diletant 183:c7a9c309086c 3040 hashParamTable[898].size = sizeof(device.dither.detector.settings.transfer.raw[8]);
Diletant 183:c7a9c309086c 3041 hashParamTable[899].hash = 0xfa71b24a;
Diletant 183:c7a9c309086c 3042 hashParamTable[899].ref = &device.sequencer.sampler.settings.sequence[31];
Diletant 183:c7a9c309086c 3043 hashParamTable[899].size = sizeof(device.sequencer.sampler.settings.sequence[31]);
Diletant 183:c7a9c309086c 3044 hashParamTable[900].hash = 0xfb298d6c;
Diletant 183:c7a9c309086c 3045 hashParamTable[900].ref = &device.isacs.output.settings.transfer.code[0];
Diletant 183:c7a9c309086c 3046 hashParamTable[900].size = sizeof(device.isacs.output.settings.transfer.code[0]);
Diletant 183:c7a9c309086c 3047 hashParamTable[901].hash = 0xfbb3d87d;
Diletant 183:c7a9c309086c 3048 hashParamTable[901].ref = &device.sequencer.sampler.settings.sequence[21];
Diletant 183:c7a9c309086c 3049 hashParamTable[901].size = sizeof(device.sequencer.sampler.settings.sequence[21]);
Diletant 183:c7a9c309086c 3050 hashParamTable[902].hash = 0xfbbacb82;
Diletant 183:c7a9c309086c 3051 hashParamTable[902].ref = &device.dither.pulse.state.fall;
Diletant 183:c7a9c309086c 3052 hashParamTable[902].size = sizeof(device.dither.pulse.state.fall);
Diletant 183:c7a9c309086c 3053 hashParamTable[903].hash = 0xfbc7398;
Diletant 183:c7a9c309086c 3054 hashParamTable[903].ref = &device.counters.latch.settings.signal;
Diletant 183:c7a9c309086c 3055 hashParamTable[903].size = sizeof(device.counters.latch.settings.signal);
Diletant 183:c7a9c309086c 3056 hashParamTable[904].hash = 0xfbda64f;
Diletant 183:c7a9c309086c 3057 hashParamTable[904].ref = &device.counters.dither.state.delta[22];
Diletant 183:c7a9c309086c 3058 hashParamTable[904].size = sizeof(device.counters.dither.state.delta[22]);
Diletant 183:c7a9c309086c 3059 hashParamTable[905].hash = 0xfbe92935;
Diletant 183:c7a9c309086c 3060 hashParamTable[905].ref = &device.plcs.reset.down.settings.environment.temperature[13];
Diletant 183:c7a9c309086c 3061 hashParamTable[905].size = sizeof(device.plcs.reset.down.settings.environment.temperature[13]);
Diletant 183:c7a9c309086c 3062 hashParamTable[906].hash = 0xfbfc1491;
Diletant 183:c7a9c309086c 3063 hashParamTable[906].ref = &device.sequencer.output.analog.settings.transfer.voltage[10];
Diletant 183:c7a9c309086c 3064 hashParamTable[906].size = sizeof(device.sequencer.output.analog.settings.transfer.voltage[10]);
Diletant 183:c7a9c309086c 3065 hashParamTable[907].hash = 0xfc0531d4;
Diletant 183:c7a9c309086c 3066 hashParamTable[907].ref = &device.controller.QEI.state.delta;
Diletant 183:c7a9c309086c 3067 hashParamTable[907].size = sizeof(device.controller.QEI.state.delta);
Diletant 183:c7a9c309086c 3068 hashParamTable[908].hash = 0xfc40b003;
Diletant 183:c7a9c309086c 3069 hashParamTable[908].ref = &device.plcs.detector.state.in[1];
Diletant 183:c7a9c309086c 3070 hashParamTable[908].size = sizeof(device.plcs.detector.state.in[1]);
Diletant 183:c7a9c309086c 3071 hashParamTable[909].hash = 0xfc714540;
Diletant 183:c7a9c309086c 3072 hashParamTable[909].ref = &device.isacs.regulator.settings.transfer.error[11];
Diletant 183:c7a9c309086c 3073 hashParamTable[909].size = sizeof(device.isacs.regulator.settings.transfer.error[11]);
Diletant 183:c7a9c309086c 3074 hashParamTable[910].hash = 0xfcba70a1;
Diletant 183:c7a9c309086c 3075 hashParamTable[910].ref = &device.sequencer.sampler.settings.sequence[61];
Diletant 183:c7a9c309086c 3076 hashParamTable[910].size = sizeof(device.sequencer.sampler.settings.sequence[61]);
Diletant 183:c7a9c309086c 3077 hashParamTable[911].hash = 0xfcccb02a;
Diletant 183:c7a9c309086c 3078 hashParamTable[911].ref = &device.dither.detector.settings.transfer.restored[7];
Diletant 183:c7a9c309086c 3079 hashParamTable[911].size = sizeof(device.dither.detector.settings.transfer.restored[7]);
Diletant 183:c7a9c309086c 3080 hashParamTable[912].hash = 0xfceba7ea;
Diletant 183:c7a9c309086c 3081 hashParamTable[912].ref = &device.controller.uart[1].state.DLL;
Diletant 183:c7a9c309086c 3082 hashParamTable[912].size = sizeof(device.controller.uart[1].state.DLL);
Diletant 183:c7a9c309086c 3083 hashParamTable[913].hash = 0xfd213a6a;
Diletant 183:c7a9c309086c 3084 hashParamTable[913].ref = &device.counters.dither.state.rate;
Diletant 183:c7a9c309086c 3085 hashParamTable[913].size = sizeof(device.counters.dither.state.rate);
Diletant 183:c7a9c309086c 3086 hashParamTable[914].hash = 0xfe38daf3;
Diletant 183:c7a9c309086c 3087 hashParamTable[914].ref = &device.sequencer.sampler.state.sample[0];
Diletant 183:c7a9c309086c 3088 hashParamTable[914].size = sizeof(device.sequencer.sampler.state.sample[0]);
Diletant 183:c7a9c309086c 3089 hashParamTable[915].hash = 0xfe518885;
Diletant 183:c7a9c309086c 3090 hashParamTable[915].ref = &device.tss.gradient.settings.transfer.celsius[8];
Diletant 183:c7a9c309086c 3091 hashParamTable[915].size = sizeof(device.tss.gradient.settings.transfer.celsius[8]);
Diletant 183:c7a9c309086c 3092 hashParamTable[916].hash = 0xfefccef8;
Diletant 183:c7a9c309086c 3093 hashParamTable[916].ref = &device.sequencer.sampler.settings.sequence[51];
Diletant 183:c7a9c309086c 3094 hashParamTable[916].size = sizeof(device.sequencer.sampler.settings.sequence[51]);
Diletant 183:c7a9c309086c 3095 hashParamTable[917].hash = 0xff3ea4cf;
Diletant 183:c7a9c309086c 3096 hashParamTable[917].ref = &device.sequencer.sampler.settings.sequence[41];
Diletant 183:c7a9c309086c 3097 hashParamTable[917].size = sizeof(device.sequencer.sampler.settings.sequence[41]);
Diletant 183:c7a9c309086c 3098 hashParamTable[918].hash = 0xff55d9cf;
Diletant 183:c7a9c309086c 3099 hashParamTable[918].ref = &device.plcs.output.settings.transfer.voltage[0];
Diletant 183:c7a9c309086c 3100 hashParamTable[918].size = sizeof(device.plcs.output.settings.transfer.voltage[0]);
Diletant 183:c7a9c309086c 3101 hashParamTable[919].hash = 0xff61c20;
Diletant 183:c7a9c309086c 3102 hashParamTable[919].ref = &device.dither.frequency.settings.transfer.correction[10];
Diletant 183:c7a9c309086c 3103 hashParamTable[919].size = sizeof(device.dither.frequency.settings.transfer.correction[10]);
Diletant 183:c7a9c309086c 3104 hashParamTable[920].hash = 0xff9e7cfd;
Diletant 183:c7a9c309086c 3105 hashParamTable[920].ref = &device.ccs.current[0].settings.transfer.mA[10];
Diletant 183:c7a9c309086c 3106 hashParamTable[920].size = sizeof(device.ccs.current[0].settings.transfer.mA[10]);
Diletant 183:c7a9c309086c 3107 hashParamTable[921].hash = 0xffab0a30;
Diletant 183:c7a9c309086c 3108 hashParamTable[921].ref = &device.tss.temperature.settings.transfer.raw[12];
Diletant 183:c7a9c309086c 3109 hashParamTable[921].size = sizeof(device.tss.temperature.settings.transfer.raw[12]);
Diletant 161:efd949e8d536 3110 }
Diletant 161:efd949e8d536 3111
Diletant 161:efd949e8d536 3112 void InitHashFuncTable(void) {
Diletant 161:efd949e8d536 3113 hashFuncTable[0].hash = 0x71f16e12;
Diletant 161:efd949e8d536 3114 hashFuncTable[0].ref = DeviceFlashWriteAll;
Diletant 161:efd949e8d536 3115 hashFuncTable[0].resultSize = sizeof(void);
Diletant 161:efd949e8d536 3116 hashFuncTable[0].paramCount = 0;
Diletant 161:efd949e8d536 3117 hashFuncTable[1].hash = 0xd84a94cf;
Diletant 161:efd949e8d536 3118 hashFuncTable[1].ref = DeviceFlashReadAll;
Diletant 161:efd949e8d536 3119 hashFuncTable[1].resultSize = sizeof(void);
Diletant 161:efd949e8d536 3120 hashFuncTable[1].paramCount = 0;
Diletant 161:efd949e8d536 3121 hashFuncTable[2].hash = 0xd93b80f4;
Diletant 161:efd949e8d536 3122 hashFuncTable[2].ref = DeviceStartLightUp;
Diletant 161:efd949e8d536 3123 hashFuncTable[2].resultSize = sizeof(void);
Diletant 161:efd949e8d536 3124 hashFuncTable[2].paramCount = 0;
Diletant 177:672ef279c8e0 3125 }
Diletant 177:672ef279c8e0 3126 /*
Diletant 177:672ef279c8e0 3127 int main (void)
Diletant 177:672ef279c8e0 3128 {
Diletant 177:672ef279c8e0 3129 //Device initialization
Diletant 177:672ef279c8e0 3130 DeviceInit();
Diletant 177:672ef279c8e0 3131
Diletant 177:672ef279c8e0 3132 //Service port communication
Diletant 177:672ef279c8e0 3133 sprintf(device.service.buffer,"...GL start...\r\n"); WriteConcole();
Diletant 177:672ef279c8e0 3134 sprintf(device.service.buffer,"Compiled: %s %s\r\n",__DATE__, __TIME__ ); WriteConcole();
Diletant 177:672ef279c8e0 3135 sprintf(device.service.buffer,"SystemCoreClock: %d\r\n",SystemCoreClock1); WriteConcole();
Diletant 177:672ef279c8e0 3136 sprintf(device.service.buffer,"Service port: %03d %03d\r\n",device.controller.uart[0].state.DLM, device.controller.uart[0].state.DLL); WriteConcole();
Diletant 177:672ef279c8e0 3137 sprintf(device.service.buffer,"Host port: %03d %03d\r\n",device.controller.uart[1].state.DLM, device.controller.uart[1].state.DLL); WriteConcole();
Diletant 177:672ef279c8e0 3138
Diletant 177:672ef279c8e0 3139 //Start device operation
Diletant 177:672ef279c8e0 3140 DeviceStart();
Diletant 177:672ef279c8e0 3141 //Main cycle
Diletant 177:672ef279c8e0 3142 while ( 1 ) {
Diletant 177:672ef279c8e0 3143 deviceCycle();
Diletant 177:672ef279c8e0 3144 }
Diletant 177:672ef279c8e0 3145 }
Diletant 177:672ef279c8e0 3146 */