code:parafoil_main
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
code:parafoil_main [2008/05/06 03:55] – proper use of semaphores laurenceb | code:parafoil_main [2008/08/16 21:11] (current) – laurenceb | ||
---|---|---|---|
Line 4: | Line 4: | ||
{{code: | {{code: | ||
+ | |||
+ | ===== TSIP version for lassen iq ===== | ||
+ | |||
+ | [[code: | ||
+ | (nmea version has been " | ||
===== Main.h ===== | ===== Main.h ===== | ||
Line 98: | Line 103: | ||
int get_char( FILE * stream); | int get_char( FILE * stream); | ||
</ | </ | ||
- | |||
===== Main.c ===== | ===== Main.c ===== | ||
Line 193: | Line 197: | ||
//IO setup | //IO setup | ||
gyro_off; | gyro_off; | ||
- | PORTD|=( (1<< | + | PORTD|=( (1<< |
DDRB=0b00101111; | DDRB=0b00101111; | ||
DDRC=0b00011000; | DDRC=0b00011000; | ||
Line 200: | Line 204: | ||
//Kalman setup | //Kalman setup | ||
our_model.F.tl=1.0; | our_model.F.tl=1.0; | ||
- | our_model.F.tr=delta_time; | + | our_model.F.tr=delta_time; |
our_model.F.bl=0.0; | our_model.F.bl=0.0; | ||
our_model.F.br=1.0-(damping_constant*delta_time); | our_model.F.br=1.0-(damping_constant*delta_time); | ||
- | our_model.B.tl=0.0; | + | our_model.B.tl=0.0; |
our_model.B.tr=(delta_time*delta_time*control_gain)/ | our_model.B.tr=(delta_time*delta_time*control_gain)/ | ||
our_model.B.bl=0.0; | our_model.B.bl=0.0; | ||
Line 213: | Line 217: | ||
our_model.H.bl=0.0; | our_model.H.bl=0.0; | ||
our_model.H.br=1.0; | our_model.H.br=1.0; | ||
- | + | | |
- | our_model.Q.tl=0.1/ | + | our_model.Q.tl=5.0*delta_time; //estimated - corresponds to heading change |
our_model.Q.tr=0.0; | our_model.Q.tr=0.0; | ||
our_model.Q.bl=0.0; | our_model.Q.bl=0.0; | ||
- | our_model.Q.br=1.0/ | + | our_model.Q.br=10.0*delta_time; //estimated - corresponds to rate change |
- | our_model.R.tl=20.0; //or around 20 in the case of a GPD update | + | our_model.R.tl=100.0; //Data covariance |
our_model.R.tr=0.0; | our_model.R.tr=0.0; | ||
our_model.R.bl=0.0; | our_model.R.bl=0.0; | ||
- | our_model.R.br=1.0; // | + | our_model.R.br=2.0; // |
our_state.state.t=0.0; | our_state.state.t=0.0; | ||
our_state.state.b=0.0; | our_state.state.b=0.0; | ||
- | our_state.P.tl=150.0; | + | our_state.P.tl=8000.0; |
our_state.P.tr=0.0; | our_state.P.tr=0.0; | ||
our_state.P.bl=0.0; | our_state.P.bl=0.0; | ||
- | our_state.P.br=20.0; | + | our_state.P.br=400.0; |
} | } | ||
Line 237: | Line 241: | ||
{ | { | ||
u16 a; | u16 a; | ||
- | gyro_on; //SS = 0 | + | gyro_on; //SS = 0 |
SPDR=read_rate; | SPDR=read_rate; | ||
while(!(inb(SPSR) & (1<< | while(!(inb(SPSR) & (1<< | ||
Line 257: | Line 261: | ||
a|=(u16)SPDR; | a|=(u16)SPDR; | ||
gyro_off; | gyro_off; | ||
- | a=(a>> | + | a=(a>> |
return (float)(125.0/ | return (float)(125.0/ | ||
} | } | ||
Line 268: | Line 272: | ||
ISR(TIMER1_COMPA_vect) // | ISR(TIMER1_COMPA_vect) // | ||
{ | { | ||
- | sei(); //we need to be able to nest UART interrupts in here | + | sei(); //we need to be able to nest UART interrupts in here |
vector measurement_vector; | vector measurement_vector; | ||
static u08 timer; | static u08 timer; | ||
Line 284: | Line 288: | ||
{ | { | ||
our_model.H.tl=1.0; | our_model.H.tl=1.0; | ||
- | measurement_vector.t=Heading; | + | measurement_vector.t=Heading; |
target=Target; | target=Target; | ||
Heading_flag=FALSE; | Heading_flag=FALSE; | ||
Line 297: | Line 301: | ||
{ | { | ||
our_model.H.br=0.0; | our_model.H.br=0.0; | ||
- | measurement_vector.b=0.0; | + | measurement_vector.b=0.0; |
} | } | ||
else | else | ||
Line 304: | Line 308: | ||
} | } | ||
our_state_local=predict_and_update(& | our_state_local=predict_and_update(& | ||
- | if(our_state_local.state.t> | + | if(our_state_local.state.t> |
{ | { | ||
our_state_local.state.t-=360; | our_state_local.state.t-=360; | ||
Line 321: | Line 325: | ||
a+=360; | a+=360; | ||
} | } | ||
- | integral+=a; | + | integral+=a; |
if(integral> | if(integral> | ||
{ | { | ||
Line 333: | Line 337: | ||
{ | { | ||
control_vector.b=P_C*a+I_C*integral+D_C*our_state_local.state.b; | control_vector.b=P_C*a+I_C*integral+D_C*our_state_local.state.b; | ||
- | if(control_vector.b> | + | if(control_vector.b> |
{ | { | ||
control_vector.b=1.0; | control_vector.b=1.0; | ||
Line 355: | Line 359: | ||
if(!Kalman_flag) // | if(!Kalman_flag) // | ||
{ | { | ||
- | kalman_state=kalman_state_local; | + | our_state=our_state_local; |
} | } | ||
} | } | ||
Line 458: | Line 462: | ||
int put_char(char c, FILE * stream) | int put_char(char c, FILE * stream) | ||
{ | { | ||
- | loop_until_bit_is_set(UCSR0A, | + | loop_until_bit_is_set(UCSR0A, |
UDR0 = c; | UDR0 = c; | ||
| | ||
Line 483: | Line 487: | ||
if(undead_man) // | if(undead_man) // | ||
{ | { | ||
- | while(!gps.status) //wait for a gps lock | + | while(!Gps.status) //wait for a gps lock |
{ | { | ||
printf(" | printf(" | ||
wdt_reset(); | wdt_reset(); | ||
- | gps.packetflag=FALSE; | + | Gps.packetflag=FALSE; |
- | while(!Gps.packetflag) // | + | while(!Gps.packetflag); //wait for some new gps |
} | } | ||
for (L=0; | for (L=0; | ||
Line 496: | Line 500: | ||
wdt_reset(); | wdt_reset(); | ||
} | } | ||
- | if(eeprom_read_byte(& | + | if(eeprom_read_byte(& |
{ | { | ||
eeprom_write_byte(& | eeprom_write_byte(& | ||
Line 510: | Line 514: | ||
disable_ground_control(); | disable_ground_control(); | ||
#endif | #endif | ||
- | L=0; //need it =0 for next stage | + | L=0; //need it =0 for next stage |
printf(" | printf(" | ||
} | } | ||
- | if(!eeprom_read_byte(& | + | if(!eeprom_read_byte(& |
{ | { | ||
while(!cutdownrulecheck(time,& | while(!cutdownrulecheck(time,& | ||
Line 530: | Line 534: | ||
} | } | ||
wiggleservo(); | wiggleservo(); | ||
- | if (radio_cts) | + | if (radio_cts) |
{ | { | ||
- | dataprint(& | + | dataprint(& |
} | } | ||
wdt_reset(); | wdt_reset(); | ||
Gps.packetflag=FALSE; | Gps.packetflag=FALSE; | ||
- | while(!Gps.packetflag) // | + | while(!Gps.packetflag); //wait for some new gps |
} | } | ||
cutdown(12); | cutdown(12); | ||
- | eeprom_write_byte(& | + | eeprom_write_byte(& |
} | } | ||
sbi(TIMSK1, | sbi(TIMSK1, | ||
Line 552: | Line 556: | ||
Heading =Rad2deg*atan2(Gps.speed*sin(Gps.heading)-Wind_x, | Heading =Rad2deg*atan2(Gps.speed*sin(Gps.heading)-Wind_x, | ||
Heading_flag=TRUE; | Heading_flag=TRUE; | ||
- | K=Heading-Target; | + | K=Heading-Target; |
if (K >180) | if (K >180) | ||
{ | { | ||
K -= 360; | K -= 360; | ||
- | } | + | } //all to keep us in +-180 degree range |
if(K < -180) | if(K < -180) | ||
{ | { | ||
Line 569: | Line 573: | ||
led_right; | led_right; | ||
} | } | ||
- | if (radio_cts) | + | if (radio_cts) |
{ | { | ||
dataprint(& | dataprint(& | ||
Line 581: | Line 585: | ||
wdt_reset(); | wdt_reset(); | ||
| | ||
- | while(!Gps.packetflag) // | + | while(!Gps.packetflag); //wait for some new gps |
} | } | ||
} | } | ||
Line 613: | Line 617: | ||
sprintf(outputbuffer," | sprintf(outputbuffer," | ||
return outputbuffer; | return outputbuffer; | ||
- | }*/ | + | }*/</ |
- | </ | + |
code/parafoil_main.1210046106.txt.gz · Last modified: 2008/07/19 23:31 (external edit)