DL-DB: Difference between revisions

From DaqWiki
Jump to navigation Jump to search
Line 34: Line 34:
* U19 - ADS7828E/250 - (A0->+5V0, A1->GND) - TMP1..8
* U19 - ADS7828E/250 - (A0->+5V0, A1->GND) - TMP1..8
* U20 - ADS7828E/250 - (A0->+5V0, A1->+5V0) - TMP9..16
* U20 - ADS7828E/250 - (A0->+5V0, A1->+5V0) - TMP9..16
<pre>
root@cb02:~# i2cdetect -y -r 1
    0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:          -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- 47 48 49 4a 4b -- -- -- --
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- 69 -- -- -- -- -- --
70: -- -- -- -- -- -- -- --                       
root@cb02:~#
</pre>


== DL-DB Temperature monitor ==
== DL-DB Temperature monitor ==

Revision as of 18:02, 11 December 2023

DL-DB DarkLight distribution board

Links

Schematics

DL-DB power

  • +Vin -> F1 -> +Vin_F
  • -Vin -> ???
  • +Vin_F -> U3 ADP7105ACPZ-R2 -> +5V0
  • +5V0 -> U4 MCP1754ST-3302E/MB -> +3.3V
  • +5V0 -> U18 -> VREF-TMP
  • +Vin_F -> U14 ADP7105ACPZ-R2 -> Vdd_TP +3.3V

DL-SiPM power

DL-DB i2c

  • U1 - DAC7678SPW - (ADDR->GND) - HVset1..8
  • U2 - DAC7678SPW - (ADDR->+5V0) - HVset9..16
  • U5 - TCA9535PWR - (A0=+3V3,A1=A2=GND) - PWR_EN1..16
  • U6 - TCA9535PWR - (A0=GND,A1=A2=+3V3) - I2C_EN1..16
  • U9 - MCP3422A1TE/SN - Vbias voltage (R5/R6 divider +HVEXT to GND) and current (R4 to +HV_CS)
  • U19 - ADS7828E/250 - (A0->+5V0, A1->GND) - TMP1..8
  • U20 - ADS7828E/250 - (A0->+5V0, A1->+5V0) - TMP9..16
root@cb02:~# i2cdetect -y -r 1
     0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f
00:          -- -- -- -- -- -- -- -- -- -- -- -- -- 
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
40: -- -- -- -- -- -- -- 47 48 49 4a 4b -- -- -- -- 
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 
60: -- -- -- -- -- -- -- -- -- 69 -- -- -- -- -- -- 
70: -- -- -- -- -- -- -- --                         
root@cb02:~# 

DL-DB Temperature monitor

  • U19, U20. 12-bit 8 channel ADC.
  • i2c addr 73=0x49, 75=0x4B. {10010,A1,A0,RW}
  • adc_config = 0b10000100
// cmd bits are: SD, c2,c1,c0, Pd1,Pd0, x, x
//                1   x  x  x   0   1   0   0
// SD=1=single ended, PD1=0=int ref off, PD0=1=ADC ON, c210 = channel addr
  • to read: write command with c0,c1,c2, read 2 bytes of ADC data
  • calibration
float R25 = 5000;  // R25 = 5kohm
unsigned int temp_cnt = read 2 bytes of ADC data from i2c
float RT = temp_cnt*R25/(4096-temp_cnt);
TCH = 28.54 * pow((RT/R25),3) - 158.5 * pow((RT/R25),2) + 474.8 * (RT/R25) - 319.85; // in degC

DL-DB HV Vbias

  • U12-1..16 - OPA455IDDAR - HVset, HV_CS, HVout

DL-SiPM i2c

AAA