123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642 |
- /*
- * config sensor sdr in here.
- * Author:Jimbo
- */
- #include <stdio.h>
- #include <stdint.h>
- #include "com_IPMI_SDRRecord.h"
- /*
- * sdr table
- */
- const MgmtCtrlrDevLocator_T bmc_sdr = {
- /* SDR Record Header */
- {
- 0x01, //Record ID
- 0x51, //SDR Version
- MGMT_CTRL_DEV_LOCATOR_SDR_REC, //Record Type
- 11+MAX_ID_STR_LEN, //Record Length = 11+string length
- },
- /* Record Key Bytes*/
- 0x20, /* Slave address - 0x20 Primary BMC */
- 0x00, /* ChannelNumber - 0x00 Primary BMC */
-
- /* Record Body Bytes*/
- 0x0, /* power state notification */
- 0xff, /* Device Capablities */
- {0, 0, 0,}, /* RESERVED */
- 0x0, /* Entity ID */
- 0x1, /* Entity Instance */
- 0x0, /* OEM */
- 0xc0 +MAX_ID_STR_LEN, /* ID String Type / Length Code */
- "STM32F429_BMC"
- };
-
-
- /***************** Attation ************************
- * <Record ID>, <Sensor Number> must be modified!!!
- **************************************************/
-
- const FullSensorRec_T full_sdr_tbl[] = {
- /*
- * sensor number: 1
- * sensor name: +12V
- * brief: ltc4280
- */
- {
- /* SDR Record Header */
- {
- 0x02, //Record ID
- 0x51, //SDR Version
- FULL_SDR_REC, //Record Type
- 43+MAX_ID_STR_LEN, //Record Length = 43+string length
- },
- /* Record Key Bytes */
- 0x20, //Sensor Owner ID
- 0x0, //Sensor Owner LUN
- 0x01, //Sensor Number
- /* Record Body Bytes */
- 0x7, //Entity ID
- 0x1, //Entity Instance
- 0x7f, //Entity Initialization
- 0x68, //Sensor Capabilities
- 0x02, //Sensor Type: 01-temperature, 02-voltage, 03-current, 04-fan
- 0x01, //Event / Reading Type
- 0x7a95, //Lower Threshold Reading Mask
- 0x7a95, //Upper Threshold Reading Mask
- 0x3f3f, //Settable / Readable Threshold Mask
- /*
- [7:6] - Analog (numeric) Data Format**
- 00b = unsigned
- 01b = 1's complement(singed)
- 10b = 2's complement(singed)
- 11b = Does not return analog (numeric) reading
- [5:3] - Rate unit
- 000b = none
- 001b = per µS
- 010b = per ms
- 011b = per s
- 100b = per minute
- 101b = per hour
- 110b = per day
- 111b = reserved
- [2:1] - Modifier unit
- 00b = none
- 01b = Basic Unit / Modifier Unit
- 10b = Basic Unit * Modifier Unit
- 11b = reserved
- [0] - Percentage 0b = no, 1b = yes
- */
- (0x0<<6)+(0x0<<3)+(0x0<<1)+0x0, //Sensor Units 1
- /*
- 0 unspecified
- 1 degrees C
- 2 degrees F
- 3 degrees K
- 4 Volts
- 5 Amps
- */
- 0x4, //Sensor Units 2 - Base Unit
- 0x0, //Sensor Units 3 - Modifier Unit
- 0x0, //Linerization
- /* M = 0x12e x 10^-4 */
- 0x3d, //M_LSB
- /*
- [7:6] - M: MS 2 bits
- [5:0] - Tolerance: 6 bits, unsigned (Tolerance in +/- ½ raw counts)
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //M,Tolerance
- 0x0, //B_LSB
- /*
- [7:6] - B: MS 2 bits
- Unsigned, 10-bit Basic Sensor Accuracy in 1/100 percent scaled up by unsigned
- Accuracy exponent:
- [5:0] - Accuracy: LS 6 bits
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //B,Accuracy
- ((0x0>>2)&0xF0)+(0x0&0x0C)+0x0, //Accuracy,Accuracy exponent
- (uint8_t)(0xfd<<4)+(0x0&0x0F), //R exponent,B exponent
- 0x0, //Analog Characteristics Flags
- 0x7f, //Nominal Reading
- 0xff, //Normal Maximum
- 0x00, //Normal Minimum
- 0xff, //Sensor Maximum Reading
- 0x00, //Sensor Minimum Reading
- 0xff, //Upper Non-Recoverable Threshold
- 0xff, //Upper Critical Threshold
- 0xff, //Upper Non-Critical Threshold
- 0x00, //Lower Non-Recoverable Threshold
- 0x00, //Lower Critical Threshold
- 0x00, //Lower Non-Critical threshold
- 0x0, //Positive - threshold Hysteresis value
- 0x0, //Negative - threshold Hysteresis value
- 0x0, //Reserved
- 0x0, //Reserved
- 0x0, //OEM
- 0xC0+MAX_ID_STR_LEN, //ID String Type / Length Code
- "+12V"
- },
- /*
- * sensor number: 2
- * sensor name: +12V_Current
- * brief: ltc4280
- */
- {
- /* SDR Record Header */
- {
- 0x03, //Record ID
- 0x51, //SDR Version
- FULL_SDR_REC, //Record Type
- 43+MAX_ID_STR_LEN, //Record Length = 43+string length
- },
- /* Record Key Bytes */
- 0x20, //Sensor Owner ID
- 0x0, //Sensor Owner LUN
- 0x02, //Sensor Number
- /* Record Body Bytes */
- 0x7, //Entity ID
- 0x1, //Entity Instance
- 0x7f, //Entity Initialization
- 0x68, //Sensor Capabilities
- 0x02, //Sensor Type: 01-temperature, 02-voltage, 03-current, 04-fan
- 0x01, //Event / Reading Type
- 0x7a95, //Lower Threshold Reading Mask
- 0x7a95, //Upper Threshold Reading Mask
- 0x3f3f, //Settable / Readable Threshold Mask
- /*
- [7:6] - Analog (numeric) Data Format**
- 00b = unsigned
- 01b = 1's complement(singed)
- 10b = 2's complement(singed)
- 11b = Does not return analog (numeric) reading
- [5:3] - Rate unit
- 000b = none
- 001b = per µS
- 010b = per ms
- 011b = per s
- 100b = per minute
- 101b = per hour
- 110b = per day
- 111b = reserved
- [2:1] - Modifier unit
- 00b = none
- 01b = Basic Unit / Modifier Unit
- 10b = Basic Unit * Modifier Unit
- 11b = reserved
- [0] - Percentage 0b = no, 1b = yes
- */
- (0x0<<6)+(0x0<<3)+(0x0<<1)+0x0, //Sensor Units 1
- /*
- 0 unspecified
- 1 degrees C
- 2 degrees F
- 3 degrees K
- 4 Volts
- 5 Amps
- */
- 0x5, //Sensor Units 2 - Base Unit
- 0x0, //Sensor Units 3 - Modifier Unit
- 0x0, //Linerization
- /* M = 0x12e x 10^-4 */
- 0x2e, //M_LSB
- /*
- [7:6] - M: MS 2 bits
- [5:0] - Tolerance: 6 bits, unsigned (Tolerance in +/- ½ raw counts)
- */
- ((0x12e>>2)&0xC0)+(0x0&0x3F), //M,Tolerance
- 0x0, //B_LSB
- /*
- [7:6] - B: MS 2 bits
- Unsigned, 10-bit Basic Sensor Accuracy in 1/100 percent scaled up by unsigned
- Accuracy exponent:
- [5:0] - Accuracy: LS 6 bits
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //B,Accuracy
- ((0x0>>2)&0xF0)+(0x0&0x0C)+0x0, //Accuracy,Accuracy exponent
- (uint8_t)(0xfc<<4)+(0x0&0x0F), //R exponent,B exponent
- 0x0, //Analog Characteristics Flags
- 0x7f, //Nominal Reading
- 0xff, //Normal Maximum
- 0x00, //Normal Minimum
- 0xff, //Sensor Maximum Reading
- 0x00, //Sensor Minimum Reading
- 0xff, //Upper Non-Recoverable Threshold
- 0xff, //Upper Critical Threshold
- 0xff, //Upper Non-Critical Threshold
- 0x0, //Lower Non-Recoverable Threshold
- 0x0, //Lower Critical Threshold
- 0x0, //Lower Non-Critical threshold
- 0x0, //Positive - threshold Hysteresis value
- 0x0, //Negative - threshold Hysteresis value
- 0x0, //Reserved
- 0x0, //Reserved
- 0x0, //OEM
- 0xC0+MAX_ID_STR_LEN, //ID String Type / Length Code
- "+12V_Current"
- },
-
- /*
- * sensor number: 3
- * sensor name: Temp_Board
- * brief: G780 local
- */
- {
- /* SDR Record Header */
- {
- 0x04, //Record ID
- 0x51, //SDR Version
- FULL_SDR_REC, //Record Type
- 43+MAX_ID_STR_LEN, //Record Length = 43+string length
- },
- /* Record Key Bytes */
- 0x20, //Sensor Owner ID
- 0x0, //Sensor Owner LUN
- 0x03, //Sensor Number
- /* Record Body Bytes */
- 0x7, //Entity ID
- 0x1, //Entity Instance
- 0x7f, //Entity Initialization
- 0x68, //Sensor Capabilities
- 0x01, //Sensor Type: 01-temperature, 02-voltage, 03-current, 04-fan
- 0x01, //Event / Reading Type
- 0x7a95, //Lower Threshold Reading Mask
- 0x7a95, //Upper Threshold Reading Mask
- 0x3f3f, //Settable / Readable Threshold Mask
- /*
- [7:6] - Analog (numeric) Data Format**
- 00b = unsigned
- 01b = 1's complement(singed)
- 10b = 2's complement(singed)
- 11b = Does not return analog (numeric) reading
- [5:3] - Rate unit
- 000b = none
- 001b = per µS
- 010b = per ms
- 011b = per s
- 100b = per minute
- 101b = per hour
- 110b = per day
- 111b = reserved
- [2:1] - Modifier unit
- 00b = none
- 01b = Basic Unit / Modifier Unit
- 10b = Basic Unit * Modifier Unit
- 11b = reserved
- [0] - Percentage 0b = no, 1b = yes
- */
- (0x2<<6)+(0x0<<3)+(0x0<<1)+0x0, //Sensor Units 1
- /*
- 0 unspecified
- 1 degrees C
- 2 degrees F
- 3 degrees K
- 4 Volts
- 5 Amps
- */
- 0x1, //Sensor Units 2 - Base Unit
- 0x0, //Sensor Units 3 - Modifier Unit
- 0x0, //Linerization
- 0x1, //M_LSB
- /*
- [7:6] - M: MS 2 bits
- [5:0] - Tolerance: 6 bits, unsigned (Tolerance in +/- ½ raw counts)
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //M,Tolerance
- 0x0, //B_LSB
- /*
- [7:6] - B: MS 2 bits
- Unsigned, 10-bit Basic Sensor Accuracy in 1/100 percent scaled up by unsigned
- Accuracy exponent:
- [5:0] - Accuracy: LS 6 bits
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //B,Accuracy
- ((0x0>>2)&0xF0)+(0x0&0x0C)+0x0, //Accuracy,Accuracy exponent
- (0x0<<4)+(0x0&0x0F), //R exponent,B exponent
- 0x0, //Analog Characteristics Flags
- 0x7f, //Nominal Reading
- 0x7f, //Normal Maximum
- 0x80, //Normal Minimum
- 0x7f, //Sensor Maximum Reading
- 0x80, //Sensor Minimum Reading
- 0x7f, //Upper Non-Recoverable Threshold
- 0x7f, //Upper Critical Threshold
- 0x7f, //Upper Non-Critical Threshold
- 0x80, //Lower Non-Recoverable Threshold
- 0x80, //Lower Critical Threshold
- 0x80, //Lower Non-Critical threshold
- 0x0, //Positive - threshold Hysteresis value
- 0x0, //Negative - threshold Hysteresis value
- 0x0, //Reserved
- 0x0, //Reserved
- 0x0, //OEM
- 0xC0+MAX_ID_STR_LEN, //ID String Type / Length Code
- "Temp_Board"
- },
- /*
- * sensor number: 4
- * sensor name: Temp_FPGA
- * brief: G780 remote
- */
- {
- /* SDR Record Header */
- {
- 0x05, //Record ID
- 0x51, //SDR Version
- FULL_SDR_REC, //Record Type
- 43+MAX_ID_STR_LEN, //Record Length = 43+string length
- },
- /* Record Key Bytes */
- 0x20, //Sensor Owner ID
- 0x0, //Sensor Owner LUN
- 0x04, //Sensor Number
- /* Record Body Bytes */
- 0x7, //Entity ID
- 0x1, //Entity Instance
- 0x7f, //Entity Initialization
- 0x68, //Sensor Capabilities
- 0x01, //Sensor Type: 01-temperature, 02-voltage, 03-current, 04-fan
- 0x01, //Event / Reading Type
- 0x7a95, //Lower Threshold Reading Mask
- 0x7a95, //Upper Threshold Reading Mask
- 0x3f3f, //Settable / Readable Threshold Mask
- /*
- [7:6] - Analog (numeric) Data Format**
- 00b = unsigned
- 01b = 1's complement(singed)
- 10b = 2's complement(singed)
- 11b = Does not return analog (numeric) reading
- [5:3] - Rate unit
- 000b = none
- 001b = per µS
- 010b = per ms
- 011b = per s
- 100b = per minute
- 101b = per hour
- 110b = per day
- 111b = reserved
- [2:1] - Modifier unit
- 00b = none
- 01b = Basic Unit / Modifier Unit
- 10b = Basic Unit * Modifier Unit
- 11b = reserved
- [0] - Percentage 0b = no, 1b = yes
- */
- (0x2<<6)+(0x0<<3)+(0x0<<1)+0x0, //Sensor Units 1
- /*
- 0 unspecified
- 1 degrees C
- 2 degrees F
- 3 degrees K
- 4 Volts
- 5 Amps
- */
- 0x1, //Sensor Units 2 - Base Unit
- 0x0, //Sensor Units 3 - Modifier Unit
- 0x0, //Linerization
- 0x1, //M_LSB
- /*
- [7:6] - M: MS 2 bits
- [5:0] - Tolerance: 6 bits, unsigned (Tolerance in +/- ½ raw counts)
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //M,Tolerance
- 0x0, //B_LSB
- /*
- [7:6] - B: MS 2 bits
- Unsigned, 10-bit Basic Sensor Accuracy in 1/100 percent scaled up by unsigned
- Accuracy exponent:
- [5:0] - Accuracy: LS 6 bits
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //B,Accuracy
- ((0x0>>2)&0xF0)+(0x0&0x0C)+0x0, //Accuracy,Accuracy exponent
- (0x0<<4)+(0x0&0x0F), //R exponent,B exponent
- 0x0, //Analog Characteristics Flags
- 0x7f, //Nominal Reading
- 0x7f, //Normal Maximum
- 0x80, //Normal Minimum
- 0x7f, //Sensor Maximum Reading
- 0x80, //Sensor Minimum Reading
- 0x7f, //Upper Non-Recoverable Threshold
- 0x7f, //Upper Critical Threshold
- 0x7f, //Upper Non-Critical Threshold
- 0x80, //Lower Non-Recoverable Threshold
- 0x80, //Lower Critical Threshold
- 0x80, //Lower Non-Critical threshold
- 0x0, //Positive - threshold Hysteresis value
- 0x0, //Negative - threshold Hysteresis value
- 0x0, //Reserved
- 0x0, //Reserved
- 0x0, //OEM
- 0xC0+MAX_ID_STR_LEN, //ID String Type / Length Code
- "Temp_FPGA"
- },
- /*
- * sensor number: 5
- * sensor name: +1.5V
- * brief: adc_ch1
- */
- {
- /* SDR Record Header */
- {
- 0x06, //Record ID
- 0x51, //SDR Version
- FULL_SDR_REC, //Record Type
- 43+MAX_ID_STR_LEN, //Record Length = 43+string length
- },
- /* Record Key Bytes */
- 0x20, //Sensor Owner ID
- 0x0, //Sensor Owner LUN
- 0x05, //Sensor Number
- /* Record Body Bytes */
- 0x7, //Entity ID
- 0x1, //Entity Instance
- 0x7f, //Entity Initialization
- 0x68, //Sensor Capabilities
- 0x02, //Sensor Type: 01-temperature, 02-voltage, 03-current, 04-fan
- 0x01, //Event / Reading Type
- 0x7a95, //Lower Threshold Reading Mask
- 0x7a95, //Upper Threshold Reading Mask
- 0x3f3f, //Settable / Readable Threshold Mask
- /*
- [7:6] - Analog (numeric) Data Format**
- 00b = unsigned
- 01b = 1's complement(singed)
- 10b = 2's complement(singed)
- 11b = Does not return analog (numeric) reading
- [5:3] - Rate unit
- 000b = none
- 001b = per µS
- 010b = per ms
- 011b = per s
- 100b = per minute
- 101b = per hour
- 110b = per day
- 111b = reserved
- [2:1] - Modifier unit
- 00b = none
- 01b = Basic Unit / Modifier Unit
- 10b = Basic Unit * Modifier Unit
- 11b = reserved
- [0] - Percentage 0b = no, 1b = yes
- */
- (0x0<<6)+(0x0<<3)+(0x0<<1)+0x0, //Sensor Units 1
- /*
- 0 unspecified
- 1 degrees C
- 2 degrees F
- 3 degrees K
- 4 Volts
- 5 Amps
- */
- 0x4, //Sensor Units 2 - Base Unit
- 0x0, //Sensor Units 3 - Modifier Unit
- 0x0, //Linerization
- 0x81, //M_LSB
- /*
- [7:6] - M: MS 2 bits
- [5:0] - Tolerance: 6 bits, unsigned (Tolerance in +/- ½ raw counts)
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //M,Tolerance
- 0x0, //B_LSB
- /*
- [7:6] - B: MS 2 bits
- Unsigned, 10-bit Basic Sensor Accuracy in 1/100 percent scaled up by unsigned
- Accuracy exponent:
- [5:0] - Accuracy: LS 6 bits
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //B,Accuracy
- ((0x0>>2)&0xF0)+(0x0&0x0C)+0x0, //Accuracy,Accuracy exponent
- (uint8_t)(0xfc<<4)+(0x0&0x0F), //R exponent,B exponent
- 0x0, //Analog Characteristics Flags
- 0x7f, //Nominal Reading
- 0xff, //Normal Maximum
- 0x00, //Normal Minimum
- 0xff, //Sensor Maximum Reading
- 0x00, //Sensor Minimum Reading
- 0xff, //Upper Non-Recoverable Threshold
- 0xff, //Upper Critical Threshold
- 0xff, //Upper Non-Critical Threshold
- 0x00, //Lower Non-Recoverable Threshold
- 0x00, //Lower Critical Threshold
- 0x00, //Lower Non-Critical threshold
- 0x0, //Positive - threshold Hysteresis value
- 0x0, //Negative - threshold Hysteresis value
- 0x0, //Reserved
- 0x0, //Reserved
- 0x0, //OEM
- 0xC0+MAX_ID_STR_LEN, //ID String Type / Length Code
- "+1.5V"
- },
- /*
- * sensor number: 6
- * sensor name: +0.75V
- * brief: adc_ch2
- */
- {
- /* SDR Record Header */
- {
- 0x07, //Record ID
- 0x51, //SDR Version
- FULL_SDR_REC, //Record Type
- 43+MAX_ID_STR_LEN, //Record Length = 43+string length
- },
- /* Record Key Bytes */
- 0x20, //Sensor Owner ID
- 0x0, //Sensor Owner LUN
- 0x06, //Sensor Number
- /* Record Body Bytes */
- 0x7, //Entity ID
- 0x1, //Entity Instance
- 0x7f, //Entity Initialization
- 0x68, //Sensor Capabilities
- 0x02, //Sensor Type: 01-temperature, 02-voltage, 03-current, 04-fan
- 0x01, //Event / Reading Type
- 0x7a95, //Lower Threshold Reading Mask
- 0x7a95, //Upper Threshold Reading Mask
- 0x3f3f, //Settable / Readable Threshold Mask
- /*
- [7:6] - Analog (numeric) Data Format**
- 00b = unsigned
- 01b = 1's complement(singed)
- 10b = 2's complement(singed)
- 11b = Does not return analog (numeric) reading
- [5:3] - Rate unit
- 000b = none
- 001b = per µS
- 010b = per ms
- 011b = per s
- 100b = per minute
- 101b = per hour
- 110b = per day
- 111b = reserved
- [2:1] - Modifier unit
- 00b = none
- 01b = Basic Unit / Modifier Unit
- 10b = Basic Unit * Modifier Unit
- 11b = reserved
- [0] - Percentage 0b = no, 1b = yes
- */
- (0x0<<6)+(0x0<<3)+(0x0<<1)+0x0, //Sensor Units 1
- /*
- 0 unspecified
- 1 degrees C
- 2 degrees F
- 3 degrees K
- 4 Volts
- 5 Amps
- */
- 0x4, //Sensor Units 2 - Base Unit
- 0x0, //Sensor Units 3 - Modifier Unit
- 0x0, //Linerization
- 0x81, //M_LSB
- /*
- [7:6] - M: MS 2 bits
- [5:0] - Tolerance: 6 bits, unsigned (Tolerance in +/- ½ raw counts)
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //M,Tolerance
- 0x0, //B_LSB
- /*
- [7:6] - B: MS 2 bits
- Unsigned, 10-bit Basic Sensor Accuracy in 1/100 percent scaled up by unsigned
- Accuracy exponent:
- [5:0] - Accuracy: LS 6 bits
- */
- ((0x0>>2)&0xC0)+(0x0&0x3F), //B,Accuracy
- ((0x0>>2)&0xF0)+(0x0&0x0C)+0x0, //Accuracy,Accuracy exponent
- (uint8_t)(0xfc<<4)+(0x0&0x0F), //R exponent,B exponent
- 0x0, //Analog Characteristics Flags
- 0x7f, //Nominal Reading
- 0xff, //Normal Maximum
- 0x00, //Normal Minimum
- 0xff, //Sensor Maximum Reading
- 0x00, //Sensor Minimum Reading
- 0xff, //Upper Non-Recoverable Threshold
- 0xff, //Upper Critical Threshold
- 0xff, //Upper Non-Critical Threshold
- 0x00, //Lower Non-Recoverable Threshold
- 0x00, //Lower Critical Threshold
- 0x00, //Lower Non-Critical threshold
- 0x0, //Positive - threshold Hysteresis value
- 0x0, //Negative - threshold Hysteresis value
- 0x0, //Reserved
- 0x0, //Reserved
- 0x0, //OEM
- 0xC0+MAX_ID_STR_LEN, //ID String Type / Length Code
- "+0.75V"
- },
- };
- const CompactSensorRec_T Compact_sdr_tbl[] = {
- {0}, //dummy sensor, make compiler happy.
- };
|