diff options
| author | Keith Packard <keithp@keithp.com> | 2011-07-06 15:38:29 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2011-07-06 15:48:34 -0700 | 
| commit | 86b41d4c2b8a9fa4507cdb75302e0cedebb103cb (patch) | |
| tree | 642b59a0c1a56e9ffdae5cbccd172812daffcd38 /src/ao.h | |
| parent | 803bf106caf5d6b5ac12eb00a941647c7325edd1 (diff) | |
altos: Switch ao_sample.c __xdata to __pdata
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao.h')
| -rw-r--r-- | src/ao.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| @@ -803,13 +803,13 @@ extern __data uint8_t	ao_sample_adc;		/* Ring position of last processed sample  extern __pdata int16_t	ao_sample_accel;	/* most recent accel sensor reading */  #endif -extern __xdata int16_t	ao_ground_pres;		/* startup pressure */ -extern __xdata int16_t	ao_ground_height;	/* MSL of ao_ground_pres */ +extern __pdata int16_t	ao_ground_pres;		/* startup pressure */ +extern __pdata int16_t	ao_ground_height;	/* MSL of ao_ground_pres */  #if HAS_ACCEL -extern __xdata int16_t	ao_ground_accel;	/* startup acceleration */ -extern __xdata int16_t 	ao_accel_2g;		/* factory accel calibration */ -extern __xdata int32_t	ao_accel_scale;		/* sensor to m/s² conversion */ +extern __pdata int16_t	ao_ground_accel;	/* startup acceleration */ +extern __pdata int16_t 	ao_accel_2g;		/* factory accel calibration */ +extern __pdata int32_t	ao_accel_scale;		/* sensor to m/s² conversion */  #endif  void ao_sample_init(void); | 
