diff options
author | Keith Packard <keithp@keithp.com> | 2011-07-06 15:37:34 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-07-06 15:48:34 -0700 |
commit | 803bf106caf5d6b5ac12eb00a941647c7325edd1 (patch) | |
tree | 7694ab0bf0d955deadf1705dce5675be9630c8b8 | |
parent | 002f167fc2709aaf1a4984aaa0a3519a97749d5f (diff) |
altos: Switch ao_rssi.c __xdata to __pdata
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/ao_rssi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ao_rssi.c b/src/ao_rssi.c index 6912b9a2..e3964d2d 100644 --- a/src/ao_rssi.c +++ b/src/ao_rssi.c @@ -18,8 +18,8 @@ #include "ao.h" static __xdata volatile uint16_t ao_rssi_time; -static __xdata volatile uint16_t ao_rssi_delay; -static __xdata uint8_t ao_rssi_led; +static __pdata volatile uint16_t ao_rssi_delay; +static __pdata uint8_t ao_rssi_led; void ao_rssi(void) |