uint16_t readAdc0(uint16_t cmd) {
+
+ // sends "cmd" to ADC, but first answer
+ // and also the return value of the function
+ // relate to the last time this function was
+ // called
+
static uint32_t accu = 0;
spi1_writeWord(cmd);
accu += spi1_receivedWord();
}
uint16_t readAdc1(uint16_t cmd) {
+
+ // sends "cmd" to ADC, but first answer
+ // and also the return value of the function
+ // relate to the last time this function was
+ // called
+
static uint32_t accu = 0;
spi3_writeWord(cmd);
accu += spi3_receivedWord();
}
-void adc0_read(void){
+
+
+void adc0_read_pwr(void){
uint8_t c = 0; // counter for spi buffer fill
// later than the corresponding commands requesting
// for the data
- // set external multiplexers for zero calibration
- CB_GPIO_Out_Hi(ZEROCALIB);
- CB_GPIO_Out_Lo(MUXADDR0);
- CB_GPIO_Out_Lo(MUXADDR1);
-
- readAdc0(CH3VSGND | UNIPOLAR); // ignore received data // VDDDCUR
+ readAdc0(CH3VSGND | UNIPOLAR); // ignore received data // VDDDCUR
SPI_DMA_Buffer_In[c++] = VDDDCUR;
SPI_DMA_Buffer_In[c++] = readAdc0(CH4VSGND | UNIPOLAR); // VDDACUR
SPI_DMA_Buffer_In[c++] = VDDACUR;
SPI_DMA_Buffer_In[c++] = GNDSENSE;
SPI_DMA_Buffer_In[c++] = readAdc0(CH0VSCH7 | UNIPOLAR); // TEMP vs GNDSENSE
SPI_DMA_Buffer_In[c++] = TEMP;
- SPI_DMA_Buffer_In[c++] = readAdc0(CH2VSGND | UNIPOLAR); // ZEROSING
+ SPI_DMA_Buffer_In[c++] = readAdc0(CH0VSCH7 | UNIPOLAR); // TEMP vs GNDSENSE
+ // (again as dummy command just to get data out)
+
+ spi_dma_transfer(c);
+
+}
+
+void adc0_read_vref(void){
+
+ uint8_t c = 0; // counter for spi buffer fill
+
+ // the received data is always one transfer cycle
+ // later than the corresponding commands requesting
+ // for the data
+
+ // set external multiplexers for zero calibration
+ CB_GPIO_Out_Hi(ZEROCALIB);
+ CB_GPIO_Out_Lo(MUXADDR0);
+ CB_GPIO_Out_Lo(MUXADDR1);
+
+ readAdc0(CH2VSGND | UNIPOLAR); // ignore received data // ZEROSING
SPI_DMA_Buffer_In[c++] = ZEROSING;
SPI_DMA_Buffer_In[c++] = readAdc0(CH1VSGND | UNIPOLAR); // ZERODIFF
}
-void adc1_read(void){
+
+
+
+void adc1_read_pwr(void){
uint8_t c = 0; // counter for spi buffer fill
// later than the corresponding commands requesting
// for the data
- // set external multiplexers for zero calibration
- CB_GPIO_Out_Hi(ZEROCALIB);
- CB_GPIO_Out_Lo(MUXADDR0);
- CB_GPIO_Out_Lo(MUXADDR1);
readAdc1(CH3VSGND | UNIPOLAR); // ignore received data // VDDDCUR
SPI_DMA_Buffer_In[c++] = ADC1_OFFSET + VDDDCUR;
SPI_DMA_Buffer_In[c++] = ADC1_OFFSET + GNDSENSE;
SPI_DMA_Buffer_In[c++] = readAdc1(CH0VSCH7 | UNIPOLAR); // TEMP
SPI_DMA_Buffer_In[c++] = ADC1_OFFSET + TEMP;
- SPI_DMA_Buffer_In[c++] = readAdc1(CH2VSGND | UNIPOLAR); // ZEROSING
+ SPI_DMA_Buffer_In[c++] = readAdc1(CH0VSCH7 | UNIPOLAR); // TEMP
+ // (again as dummy command just to get data out)
+
+ spi_dma_transfer(c);
+
+}
+
+void adc1_read_vref(void){
+
+ uint8_t c = 0; // counter for spi buffer fill
+
+ // the received data is always one transfer cycle
+ // later than the corresponding commands requesting
+ // for the data
+
+ // set external multiplexers for zero calibration
+ CB_GPIO_Out_Hi(ZEROCALIB);
+ CB_GPIO_Out_Lo(MUXADDR0);
+ CB_GPIO_Out_Lo(MUXADDR1);
+
+ readAdc1(CH2VSGND | UNIPOLAR); // ignore received data // ZEROSING
SPI_DMA_Buffer_In[c++] = ADC1_OFFSET + ZEROSING;
SPI_DMA_Buffer_In[c++] = readAdc1(CH1VSGND | UNIPOLAR); // ZERODIFF