altos: ADS124S0X driver compiles now
authorBdale Garbee <bdale@gag.com>
Sun, 24 Feb 2019 17:49:47 +0000 (10:49 -0700)
committerBdale Garbee <bdale@gag.com>
Sun, 24 Feb 2019 17:49:47 +0000 (10:49 -0700)
src/drivers/ao_ads124s0x.c
src/telefireone-v2.0/ao_pins.h

index 9ead34c1c5e4402bac27263c3af56c4c8567c35e..299b519ccd7bc3246cb65b2d65b8284be72b3829 100644 (file)
@@ -46,7 +46,6 @@ ao_ads124s0x_stop(void) {
                       AO_ADS124S0X_SPI_BUS);
 }
 
                       AO_ADS124S0X_SPI_BUS);
 }
 
-/*
 static uint8_t
 ao_ads124s0x_reg_read(uint8_t addr)
 {
 static uint8_t
 ao_ads124s0x_reg_read(uint8_t addr)
 {
@@ -55,14 +54,16 @@ ao_ads124s0x_reg_read(uint8_t addr)
        d[0] = addr | AO_ADS124S0X_RREG;
        d[1] = 0;                       
        ao_ads124s0x_start();
        d[0] = addr | AO_ADS124S0X_RREG;
        d[1] = 0;                       
        ao_ads124s0x_start();
-       ao_spi_duplex(d, d, 2, AO_ADS124S0X_SPI_BUS);
+       ao_spi_send(d, 2, AO_ADS124S0X_SPI_BUS);
+       ao_spi_recv(d, 1, AO_ADS124S0X_SPI_BUS);
        ao_ads124s0x_stop();
 
        ao_ads124s0x_stop();
 
-       PRINTD(DEBUG_LOW, "read %x = %x\n", addr, d);
+       PRINTD(DEBUG_LOW, "read %x = %x\n", addr, d[0]);
 
 
-       return d[1];
+       return d[0];
 }
 
 }
 
+/*
 static void
 ao_ads124s0x_reg_write(uint8_t addr, uint8_t value)
 {
 static void
 ao_ads124s0x_reg_write(uint8_t addr, uint8_t value)
 {
@@ -76,21 +77,14 @@ ao_ads124s0x_reg_write(uint8_t addr, uint8_t value)
        ao_spi_send(d, 3, AO_ADS124S0X_SPI_BUS);
        ao_ads124s0x_stop();
 
        ao_spi_send(d, 3, AO_ADS124S0X_SPI_BUS);
        ao_ads124s0x_stop();
 
-#if DEBUG & DEBUG_LOW
-       d[0] = addr | AO_ADS124S0X_RREG
-       d[1] = 0;
-       ao_ads124s0x_start();
-       ao_spi_duplex(d, d, 2, AO_ADS124S0X_SPI_BUS);
-       ao_ads124s0x_stop();
-       PRINTD(DEBUG_LOW, "readback %x %x\n", d[0], d[1]);
-#endif
 }
 */
 
 }
 */
 
-// FIXME 
-//     We need to be in continuous conversion mode, and use the WREG
-//     command to set the next conversion input while reading each 
-//     which I don't see an example for elsewhere?
+static void 
+ao_ads124s0x_isr(void)
+{
+       ao_wakeup(&ao_ads124s0x_drdy);
+}
 
 static void
 ao_ads124s0x_setup(void)
 
 static void
 ao_ads124s0x_setup(void)
@@ -101,7 +95,7 @@ ao_ads124s0x_setup(void)
        if (devid != AO_ADS124S0X_ID_ADS124S06)
                ao_panic(AO_PANIC_SELF_TEST_ADS124S0X);
 
        if (devid != AO_ADS124S0X_ID_ADS124S06)
                ao_panic(AO_PANIC_SELF_TEST_ADS124S0X);
 
-       ao_exti_setup(AO_ADS124S0x_DRDY_PORT, AO_ADS124S0X_DRDY_PIN,
+       ao_exti_setup(AO_ADS124S0X_DRDY_PORT, AO_ADS124S0X_DRDY_PIN,
                AO_EXTI_MODE_FALLING|AO_EXTI_PRIORITY_HIGH,
                ao_ads124s0x_isr);
 
                AO_EXTI_MODE_FALLING|AO_EXTI_PRIORITY_HIGH,
                ao_ads124s0x_isr);
 
@@ -166,11 +160,6 @@ ao_ads124s0x(void)
        }
 }
 
        }
 }
 
-void ao_ads124s0x_isr(void)
-{
-       ao_wakeup(&ao_ads124s0x_drdy);
-}
-
 static struct ao_task ao_ads124s0x_task;
 
 static void
 static struct ao_task ao_ads124s0x_task;
 
 static void
index f6ee7c4b46168520fc4e09c7d7c4f829833f65d6..a4b506176229680c82626ed94afb0fa2f7c422bd 100644 (file)
 #define AO_ADS124S0X_RESET_PORT                (&stm_gpioc)
 #define AO_ADS124S0X_RESET_PIN         15
 
 #define AO_ADS124S0X_RESET_PORT                (&stm_gpioc)
 #define AO_ADS124S0X_RESET_PIN         15
 
+#define AO_ADS124S0X_CHANNELS          4       /* how many inputs in use */
+
 /*
  * SPI Flash memory
  */
 /*
  * SPI Flash memory
  */