ads1224.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #include "ads1224.h"
  2. #include "main.h"
  3. volatile unsigned char ads1224_read_wait = 0;
  4. volatile float adc_val;
  5. volatile unsigned char adc_data_ready;
  6. void ads1224_mux(unsigned char input){
  7. if(input&1){
  8. PORTB |= ADC_MUX0;
  9. } else {
  10. PORTB &= ~ADC_MUX0;
  11. }
  12. if(input&2){
  13. PORTB |= ADC_MUX1;
  14. } else {
  15. PORTB &= ~ADC_MUX1;
  16. }
  17. }
  18. void ads1224_init(void){
  19. // configure pin change interrupt on PB6/PCINT14
  20. PCICR |= _BV(PCIE1);
  21. PCMSK1 |= _BV(PCINT14);
  22. // configure mux outputs
  23. DDRB |= ADC_MUX1 | ADC_MUX0; // MUX1 is SS so set it before SPI init!
  24. // configure SPI
  25. DDRB |= _BV(PB7); // SCK as output
  26. SPCR = _BV(SPE) | _BV(MSTR) | _BV(CPHA);
  27. SPSR = _BV(SPI2X); // CLK/2
  28. ads1224_read_wait = 1;
  29. }
  30. void ads1224_data_read(void){
  31. static unsigned char avg_count = 0;
  32. static signed long int buf = 0;
  33. unsigned char i;
  34. union {
  35. signed long int out;
  36. unsigned char d[4];
  37. } ads1224_out;
  38. for(i=3; i>0; i--){
  39. while(!(SPSR & _BV(SPIF)));
  40. if(i > 1)
  41. SPDR = 0;
  42. ads1224_out.d[i] = SPDR;
  43. }
  44. SPCR = 0; // addidtional sck pulse
  45. PORTB |= _BV(PB7);
  46. PORTB &= ~_BV(PB7);
  47. SPCR = _BV(SPE) | _BV(MSTR) | _BV(CPHA);
  48. buf += ads1224_out.out >> 8;
  49. if(++avg_count == 32){
  50. adc_val = buf; // interrupt context!
  51. avg_count = 0;
  52. buf = 0;
  53. adc_data_ready = 1;
  54. }
  55. ads1224_read_wait = 1;
  56. }
  57. ISR(PCINT1_vect){
  58. PORTB ^= _BV(PB2);
  59. if(ads1224_read_wait && !(PINB & _BV(PB6))){
  60. ads1224_read_wait = 0;
  61. SPDR = 0; // start SPI transaction
  62. ads1224_data_read();
  63. }
  64. PORTB ^= _BV(PB2);
  65. }