UKHAS Wiki

UK High Altitude Society

User Tools

Site Tools


projects:daughterboard_code

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
projects:daughterboard_code [2008/02/23 02:13] laurencebprojects:daughterboard_code [2008/07/19 23:33] (current) – external edit 127.0.0.1
Line 3: Line 3:
 #include "main.h" #include "main.h"
  
 + 
  
 + 
  
 + 
  
 + 
  
 + 
  
 + 
 +
 + 
  
 int get_char0(FILE* stream) int get_char0(FILE* stream)
 +
 + 
  
 { {
 +
 + 
  
  int c=-1;  int c=-1;
 +
 + 
  
  while(c==-1)  while(c==-1)
 +
 + 
  
  {c=uartGetByte();} //getchar gets the stream, loop until we get something  {c=uartGetByte();} //getchar gets the stream, loop until we get something
 +
 + 
  
  return (u08) c;  return (u08) c;
 +
 + 
  
 } }
Line 25: Line 45:
    
  
 + 
  
 + 
 +
 + 
 +
 + 
  
 int put_char0(char c, FILE *stream) int put_char0(char c, FILE *stream)
 +
 + 
  
 { {
 +
 + 
  
    loop_until_bit_is_set(UCSR0A, UDRE0);         //unbuffered tx comms    loop_until_bit_is_set(UCSR0A, UDRE0);         //unbuffered tx comms
 +
 + 
  
    UDR0 = c;    UDR0 = c;
 +
 + 
  
    return 0;    return 0;
 +
 + 
  
    /*    /*
 +
 + 
  
    if(uartReadyTx || !uartBufferedTx ) //if buffer is empty or we arent buffered    if(uartReadyTx || !uartBufferedTx ) //if buffer is empty or we arent buffered
 +
 + 
  
    {uartSendByte(c);                  //sends directly to uart    {uartSendByte(c);                  //sends directly to uart
 +
 + 
  
  return 0;  return 0;
 +
 + 
  
    }    }
 +
 + 
  
    else    else
 +
 + 
  
    {    {
 +
 + 
  
     //while(!bufferAddToEnd(Txbuff0,c));    //send the character to buffer     //while(!bufferAddToEnd(Txbuff0,c));    //send the character to buffer
 +
 + 
  
     if(uartAddToTxBuffer(c))     if(uartAddToTxBuffer(c))
 +
 + 
  
     {return 0;}     {return 0;}
 +
 + 
  
     else     else
 +
 + 
  
     {return -1;}     {return -1;}
 +
 + 
  
    }*/    }*/
 +
 + 
  
 } }
 +
 +
 +
 +
 +
 +
 +
 +int pseudoscanf()
 +
 +{
 +
 +
 +
 +char s[20];
 +
 +
 +
 +int d;
 +
 +
 +
 +fgets(s,20,stdin);  
 +
 +  
 +
 +sscanf(s,"%d",&d);
 +
 +
 +
 +return d;
 +
 +
 +
 +}
 +
 +
  
  
  
 float getHVvalue(int n) float getHVvalue(int n)
 +
 + 
  
 { {
 +
  if(n>0 && n<4)                                 //sanity check  if(n>0 && n<4)                                 //sanity check
 +
  {  {
-  if (n==1) n=0;                                //corrects mistake on the board 
  
-  return hvfactor*((float)a2dConvert10bit(n)-520.0);   //correct for unbalanced resistors on board+  if (n==1) n=0;                                //corrects mistake on the board 
 + 
 +  
 + 
 +   return hvfactor*((float)a2dConvert10bit(n)-520.0);   //correct for unbalanced resistors on board 
 + 
 + 
  
  }  }
 +
  else  else
 +
  {  {
-  return -1;+ 
 +   return -1; 
  }  }
 +
 } }
  
 + 
  
 + 
 +
 + 
  
 void overflow(void) void overflow(void)
 +
 + 
  
 { {
 +
 + 
  
 float delta=i_term*(p_setpoint-pressuredifference());      float delta=i_term*(p_setpoint-pressuredifference());     
 +
 + 
  
 if(position>-delta)                         //ie we're not going to end up with -ive position if(position>-delta)                         //ie we're not going to end up with -ive position
  
- position+=delta;+  
 + 
 +  position+=delta; 
 + 
 + 
  
 if (position>1400.0) position=1400.0;         //maximum limit on duty cycle if (position>1400.0) position=1400.0;         //maximum limit on duty cycle
  
-timer1PWMASet((u16)position);+  
 + 
 + timer1PWMASet((u16)position); 
 + 
 + 
  
 } }
  
 + 
  
 +void temperatureprint()
  
 +{
  
 + int temp=a2dConvert10bit(temppin);
 +
 + printf("%d,%.1f\r\n",temp,-16.436*log(1.11258*((1024.0/(double)temp)-1.0)));          //returns the thermistor temperature
 +
 + 
 +
 +
 +
 + 
  
 float pressuredifference() float pressuredifference()
 +
 + 
  
 { {
  
-return (float)pressurefactor*((float)a2dConvert10bit(pressurepin)-pressurenull);+  
 + 
 + return (float)pressurefactor*((float)a2dConvert10bit(pressurepin)-pressurenull); 
 + 
 + 
  
 } }
  
 + 
  
  
-void HVenable(void)+ 
 +void set_control_loop(d)
  
 { {
  
-int n;+if(d!=0) 
 + 
 +   { 
 + 
 +   if(!pump) timer1PWMAOn();                                      //if we set a target of zero, it turns off pwm completely, which is handy 
 + 
 +   pump=TRUE; 
 + 
 +   timerAttach(1,overflow);               //ISR on pwm falling edge 
 + 
 +   p_setpoint=(float)d/1000.0; 
 + 
 +   } 
 + 
 +  else 
 + 
 +   { 
 + 
 +   pump=FALSE; 
 + 
 +   timerDetach(1);               //ISR off pwm falling edge 
 + 
 +   timer1PWMAOff(); 
 + 
 +   } 
 + 
 +
 + 
 + 
 + 
 +  
 + 
 +  
 + 
 +void HVenable(int n
 + 
 +  
 + 
 +
 + 
 +  
  
-scanf("%d",&n); 
  
 if (n<4 && n>-1) if (n<4 && n>-1)
 +
 + 
  
  {  {
  
-  PORTD|=0b00011100;                               //turn it all off+ 
  
-  if (n) PORTD&=~(1<<(n+1))                        //sending 0 will turn off all the HV supplies+   PORTD|=0b00011100                              //turn it all off
  
-  printf("HV %d enabled\r\n",n);+  
 + 
 +   if (n) PORTD&=~(1<<(n+1));                         //sending 0 will turn off all the HV supplies 
 + 
 +  
 + 
 +   printf("HV %d enabled\r\n",n); 
 + 
 + 
  
  }  }
 +
 + 
  
 else printf("%d is not a HV channel\r\n",n);  else printf("%d is not a HV channel\r\n",n); 
 +
 + 
  
 } }
  
 + 
  
 + 
 +
 + 
  
 void nullset(void) void nullset(void)
 +
 + 
  
 { {
 +
 + 
  
 u08 n; u08 n;
 +
 + 
  
 u32 s=0; u32 s=0;
 +
 + 
  
 for(n=0;n<255;n++) for(n=0;n<255;n++)
 +
 + 
  
 { {
  
- s+=a2dConvert10bit(pressurepin);+ 
  
- _delay_ms(20);+  s+=a2dConvert10bit(pressurepin); 
 + 
 +  
 + 
 +  _delay_ms(7); 
 + 
 + 
  
 } }
 +
 + 
  
 pressurenull=(float)s; pressurenull=(float)s;
 +
 + 
  
 pressurenull/=256; pressurenull/=256;
 +
 + 
  
 printf("%f = pressurenull\r\n",(double)pressurenull); printf("%f = pressurenull\r\n",(double)pressurenull);
 +
 + 
  
 } }
  
 + 
  
 + 
  
 + 
  
 + 
 +
 + 
  
 int main(void) int main(void)
 +
 + 
  
 { {
  
-int nodata=0;+  
 + 
 +//int nodata=0; 
 + 
 + 
  
 int d; int d;
 +
 +
  
 signed char c; signed char c;
 +
 + 
 +
 +
  
 DDRD=0b00011100;       //hv outputs DDRD=0b00011100;       //hv outputs
 +
 + 
  
 PORTD=0b00011100;      //set the outputs high ie all HV supplies off PORTD=0b00011100;      //set the outputs high ie all HV supplies off
 +
 + 
  
 DDRB=0b00000010;       //pump pwm DDRB=0b00000010;       //pump pwm
 +
 + 
 +
 +PORTB=0x00;
 +
 + 
  
 uartInit();  uartInit(); 
 +
 + 
  
 uartSetBaudRate(19200); uartSetBaudRate(19200);
 +
 + 
  
 FILE mystdio0 = FDEV_SETUP_STREAM(put_char0, get_char0, _FDEV_SETUP_RW);  //so we can printf to the radio FILE mystdio0 = FDEV_SETUP_STREAM(put_char0, get_char0, _FDEV_SETUP_RW);  //so we can printf to the radio
 +
 + 
  
 stdout = &mystdio0; //set our stdio out function stdout = &mystdio0; //set our stdio out function
 +
 + 
  
 stdin = &mystdio0; //  stdin = &mystdio0; // 
 +
 + 
  
 sei(); sei();
 +
 + 
  
 //while(1) //while(1)
 +
 + 
  
 //{ //{
 +
 + 
  
 //printf("hello\r\n"); //printf("hello\r\n");
 +
 + 
  
 //_delay_ms(20); //_delay_ms(20);
 +
 + 
  
 //} //}
 +
 + 
  
 timerInit(); timerInit();
 +
 + 
  
 timer1SetPrescaler(TIMER_CLK_DIV1); timer1SetPrescaler(TIMER_CLK_DIV1);
 +
 + 
  
 timer1PWMInitICR(4095); timer1PWMInitICR(4095);
  
-timer1PWMAOn();+  
 + 
 +//timer1PWMAOn(); 
 + 
 + 
  
 timer1PWMASet(0); timer1PWMASet(0);
  
-timerAttach(1,overflow);               //ISR on pwm falling edge+ 
  
 a2dInit(); a2dInit();
 +
 + 
  
 puts("setup ok\r\n"); puts("setup ok\r\n");
 +
 + 
  
 nullset(); nullset();
 +
 + 
  
 while(1) while(1)
 +
 + 
  
 { {
  
- scanf("%c",&c);;+  
 + 
 + c=uartGetByte(); 
 + 
 + //scanf("%c",&c);; 
 + 
 + 
  
  //if(c!=-1)  //if(c!=-1)
 +
 + 
  
  //{  //{
 +
 + 
  
   //printf("%c\r\n",c);   //printf("%c\r\n",c);
 +
 + 
  
   switch(c)   switch(c)
 +
 + 
  
   {   {
 +
 + 
  
   case 'V':                                                          //HV voltage feedback   case 'V':                                                          //HV voltage feedback
  
-  scanf("%d",&d);                                                    //mistake on board, use 0,2,3+ 
  
-  printf("%f\r\n",(double)getHVvalue(d));+  printf("%.0f\r\n",(double)getHVvalue(pseudoscanf()));                          //we only need it to the nearest volt 
 + 
 + 
  
   break;   break;
 +
 + 
  
   case 'D':   case 'D':
  
-  printf("%d,%f\r\n",a2dConvert10bit(pressurepin),(double)pressuredifference());     //Pressure feedback+ 
  
-  break;+  printf("%d,%.4f\r\n",a2dConvert10bit(pressurepin),(double)pressuredifference())    //Pressure feedback
  
-  case 'H': + 
- +
-  HVenable();                                                               //turn on a HV supply+
  
   break;   break;
  
-  case 'P':+ 
  
-  scanf("%d",&d);                                                 //set a differential target - note in units of % of full range+  case 'H':
  
-  p_setpoint=(float)d/1000.0; 
  
-  break; 
  
-  case 'T':+  d=pseudoscanf();
  
-  scanf("%d",&d); 
  
-  i_term=(float)d;                                                     //set a correction factor (might need a dive term if things are messed with) 
  
-  break;+  printf("got %d",d);
  
-  case 'B':+ 
  
-  printf("%f\r\n",batteryfactor*(double)a2dConvert10bit(batpin));          //returns the battery voltage+  HVenable(d);                                                               //turn on a HV supply 
 + 
 + 
  
   break;   break;
  
-  case 'I':+ 
  
-  printf("%f\r\n",ionfactor*((double)a2dConvert10bit(ionpin)-520.0));      //returns the ionisation current - opamp is using the split ie 2.5V rail+  case 'P':
  
-  break;                                                                   //hence the 512+ 
  
-  default:+  d=pseudoscanf();
  
-  printf("command not found\r\n");+                                             //set a differential target - note in units of % of full range
  
-  nodata=0;+  set_control_loop(d) 
  
-  } 
  
- //} 
  
- /*else+  break;
  
- {+ 
  
-  nodata++;+  case 'C':
  
-  for(d=0;d<50;d++)+ 
  
-  { _delay_ms(10);}+  d=pseudoscanf();
  
-  //printf("%d,%f\r\n",nodata,(double)pressuredifference());+ 
  
- }*/+  i_term=(float)d/16.0;                                                     //set a correction factor (might need a dive term if things are messed with)
  
-}+ 
  
-return 0;+  break;
  
-} 
  
  
-</code>+  case 'K':
  
 +  
  
-==== Main.h ====+  d=(int)(p_setpoint*1000.0); //store the setpoint
  
-<code c> +  set_control_loop(0); //turn off pump
-#include <avr/interrupt.h>+
  
-#include <stdio.h>+  for(c=0;c<100;c++) _delay_ms(10); //wait 1 second
  
-#include <avr/io.h>+  nullset();
  
-#include <stdlib.h>+  set_control_loop(d);
  
-#include <util/delay.h>+  break;
  
-#include <avr/pgmspace.h> 
  
  
 +  case 'T':
  
-#include "global.h"+  temperatureprint(); 
  
-#include "uart.h"+  break;
  
-#include "buffer.h"+ 
  
-#include "a2d.h"+  case 'I':
  
-#include "avrlibtypes.h"+ 
  
-#include "avrlibdefs.h"+  printf("%.3f\r\n",ionfactor*((double)a2dConvert10bit(ionpin)-520.0));      //returns the ionisation current - opamp is using the split ie 2.5V rail
  
-#include "timerx8.h"+ 
  
 +  break;                                                                   //hence the 512
  
 + 
  
 +  //default:
  
 +  //if (c!=-1) printf("command not found\r\n");
  
-#define pressurepin 5+  //nodata=0;
  
-#define ionpin 1+ 
  
-#define batpin 4+  }
  
 + 
  
 + //}
  
-#define hvfactor 12.27                          //v + 
  
-#define pressurefactor -0.0002                  //needs to be converted to psi+ /*else
  
-#define batteryfactor 15.0/1024.0                //V volts (adjust the pot on the daughterboard)+ 
  
-#define ionfactor 5.0/1024.0                     //u Amps+ {
  
-#define defaultiterm 50+ 
  
-#define setpointdefault 0+  nodata++;
  
 + 
  
 +  for(d=0;d<50;d++)
  
-FILE* stream;+ 
  
-int get_char0(FILE* stream);+  { _delay_ms(10);}
  
-int put_char0(char c,FILE* stream);+ 
  
-void nullset(void);+  //printf("%d,%f\r\n",nodata,(double)pressuredifference());
  
-void HVenable(void);+ 
  
-float getHVvalue(int n);+ }*/
  
-float pressuredifference();+ 
  
 +}
  
 + 
  
-volatile float pressurenull;+return 0;
  
-volatile float p_setpoint=setpointdefault; + 
- +
-volatile float position; +
- +
-volatile float i_term=defaultiterm/16.0;+
  
 +}
  
 + 
  
 </code> </code>
  
projects/daughterboard_code.1203732802.txt.gz · Last modified: 2008/07/19 23:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki