EEPROM address bugfix

git-svn-id: https://arducopter.googlecode.com/svn/trunk@1149 f9c3cf11-9bcb-44bc-f272-b75c42450872
This commit is contained in:
jphelirc 2010-12-18 01:39:12 +00:00
parent 173afc91d1
commit fe2d46f70e
2 changed files with 6 additions and 6 deletions

View File

@ -676,7 +676,7 @@ void defaultUserConfig() {
#define mag_offset_x_ADR 240
#define mag_offset_y_ADR 244
#define mag_offset_z_ADR 248
#define MIN_THROTTLE_ADR 250
#define MIN_THROTTLE_ADR 252
//#define eeprom_counter_ADR 238 // hmm should i move these?!? , 31-10-10, jp
@ -684,4 +684,4 @@ void defaultUserConfig() {
// end of file
// end of file

View File

@ -364,8 +364,8 @@ void sendSerialTelemetry() {
SerPri(read_adc(3));
comma();
SerPri(read_adc(5));
comma();
comma();
SerPri(AP_Compass.heading, 4);
comma();
SerPri(AP_Compass.heading_x, 4);
@ -377,7 +377,7 @@ void sendSerialTelemetry() {
SerPri(AP_Compass.mag_y);
comma();
SerPri(AP_Compass.mag_z);
comma();
// comma();
SerPriln();
break;
@ -518,4 +518,4 @@ float readFloatSerial() {
return atof(data);
}