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/29 16:24] laurencebprojects:daughterboard_code [2008/07/19 23:33] (current) – external edit 127.0.0.1
Line 2: Line 2:
 <code c> <code c>
 #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;
 +
    
 +
 } }
 +
    
 +
    
 +
    
 +
    
 +
    
 +
 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+ 
 +   if (n==1) n=0;                                //corrects mistake on the board 
    
-  return hvfactor*((float)a2dConvert10bit(n)-520.0);   //correct for unbalanced resistors on 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() void temperatureprint()
 +
 { {
- int temp=a2dConvert10bit(temppin); + 
- printf("%d,%f\r\n",temp,temperaturefactor*((double)temp-temperaturenull));          //returns the battery voltage+  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 set_control_loop(d)
 +
 +{
 +
 +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(void)+ 
 +void HVenable(int n) 
    
 +
 { {
 +
    
-int n; + 
-  + 
-scanf("%d",&n); +
- +
 if (n<4 && n>-1) if (n<4 && n>-1)
 +
    
 +
  {  {
 +
    
-  PORTD|=0b00011100;                               //turn it all off+ 
 +   PORTD|=0b00011100;                               //turn it all off 
    
-  if (n) PORTD&=~(1<<(n+1));                         //sending 0 will turn off all the HV supplies+ 
 +   if (n) PORTD&=~(1<<(n+1));                         //sending 0 will turn off all the HV supplies 
    
-  printf("HV %d enabled\r\n",n);+ 
 +   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);+ 
 +  s+=a2dConvert10bit(pressurepin); 
    
- _delay_ms(20);+ 
 +  _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;
 +
    
-char pump=FALSE; + 
- + 
 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; 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)
 +
    
 +
 { {
 +
    
 +
  c=uartGetByte();  c=uartGetByte();
 +
  //scanf("%c",&c);;  //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("%.0f\r\n",(double)getHVvalue(pseudoscanf()));                          //we only need it to the nearest volt 
-  printf("%f\r\n",(double)getHVvalue(d));+
    
 +
   break;   break;
 +
    
 +
   case 'D':   case 'D':
 +
    
-  printf("%d,%f\r\n",a2dConvert10bit(pressurepin),(double)pressuredifference());     //Pressure feedback+ 
 +  printf("%d,%.4f\r\n",a2dConvert10bit(pressurepin),(double)pressuredifference());     //Pressure feedback 
    
 +
   break;   break;
 +
    
 +
   case 'H':   case 'H':
 +
 +
 +
 +  d=pseudoscanf();
 +
 +
 +
 +  printf("got %d",d);
 +
    
-  HVenable();                                                               //turn on a HV supply+ 
 +  HVenable(d);                                                               //turn on a HV supply 
    
 +
   break;   break;
 +
    
 +
   case 'P':   case 'P':
 +
    
-  scanf("%d",&d);                                                 //set a differential target - note in units of % of full range + 
-  if(d!=0) +  d=pseudoscanf(); 
-   { + 
-   if(!pump) timer1PWMAOn();                                      //if we set a target of zero, it turns off pwm completely, which is handy +                                             //set a differential target - note in units of % of full range 
-   pump=TRUE; + 
-   p_setpoint=(float)d/1000.0; +  set_control_loop(d);   
-   } + 
-  else + 
-   { +
-   pump=FALSE; +
-   timer1PWMAOff(); +
-   }+
   break;   break;
 +
    
 +
   case 'C':   case 'C':
 +
    
-  scanf("%d",&d);+ 
 +  d=pseudoscanf(); 
    
 +
   i_term=(float)d/16.0;                                                     //set a correction factor (might need a dive term if things are messed with)   i_term=(float)d/16.0;                                                     //set a correction factor (might need a dive term if things are messed with)
 +
    
 +
   break;   break;
- + 
 + 
 + 
 +  case 'K': 
 + 
 +   
 + 
 +  d=(int)(p_setpoint*1000.0); //store the setpoint 
 + 
 +  set_control_loop(0); //turn off pump 
 + 
 +  for(c=0;c<100;c++) _delay_ms(10); //wait 1 second 
 + 
 +  nullset(); 
 + 
 +  set_control_loop(d); 
 + 
 +  break; 
 + 
 + 
   case 'T':   case 'T':
 +
   temperatureprint();    temperatureprint(); 
 +
   break;   break;
 +
    
 +
   case 'I':   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+ 
 +  printf("%.3f\r\n",ionfactor*((double)a2dConvert10bit(ionpin)-520.0));      //returns the ionisation current - opamp is using the split ie 2.5V rail 
    
 +
   break;                                                                   //hence the 512   break;                                                                   //hence the 512
 +
    
 +
   //default:   //default:
 +
   //if (c!=-1) printf("command not found\r\n");   //if (c!=-1) printf("command not found\r\n");
 +
   //nodata=0;   //nodata=0;
 +
    
 +
   }   }
 +
    
 +
  //}  //}
 +
    
 +
  /*else  /*else
 +
    
 +
  {  {
 +
    
 +
   nodata++;   nodata++;
 +
    
 +
   for(d=0;d<50;d++)   for(d=0;d<50;d++)
 +
    
 +
   { _delay_ms(10);}   { _delay_ms(10);}
 +
    
 +
   //printf("%d,%f\r\n",nodata,(double)pressuredifference());   //printf("%d,%f\r\n",nodata,(double)pressuredifference());
 +
    
 +
  }*/  }*/
 +
    
 +
 } }
 +
    
 +
 return 0; return 0;
-  
-} 
-  
- 
-</code> 
  
- 
-==== Main.h ==== 
- 
-<code c> 
-#include <avr/interrupt.h> 
-  
-#include <stdio.h> 
-  
-#include <avr/io.h> 
-  
-#include <stdlib.h> 
    
-#include <util/delay.h> 
-  
-#include <avr/pgmspace.h> 
-  
-  
-  
-#include "global.h" 
-  
-#include "uart.h" 
-  
-#include "buffer.h" 
-  
-#include "a2d.h" 
-  
-#include "avrlibtypes.h" 
-  
-#include "avrlibdefs.h" 
-  
-#include "timerx8.h" 
-  
-  
-  
-  
-  
-#define pressurepin 4 
-  
-#define ionpin 1 
-  
-#define temppin 5 
-  
-  
-  
-#define hvfactor 12.27                          //v  
-  
-#define pressurefactor -0.0002                  //needs to be converted to psi 
-  
-#define temperaturefactor -0.359                //degrees C 
-  
-#define temperaturenull 539.0                      //for the LM94022 
  
-#define ionfactor 5.0/1024.0                     //u Amps+
    
-#define defaultiterm 50 
-  
-#define setpointdefault 0 
-  
-  
-  
-FILE* stream; 
-  
-int get_char0(FILE* stream); 
-  
-int put_char0(char c,FILE* stream); 
-  
-void nullset(void); 
-  
-void HVenable(void); 
-  
-float getHVvalue(int n); 
-  
-float pressuredifference(); 
-  
-  
-  
-volatile float pressurenull; 
-  
-volatile float p_setpoint=setpointdefault; 
-  
-volatile float position; 
-  
-volatile float i_term=defaultiterm/16.0; 
-  
-  
- 
  
 </code> </code>
  
projects/daughterboard_code.1204302271.txt.gz · Last modified: 2008/07/19 23:31 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki