diff options
author | Keith Packard <keithp@keithp.com> | 2011-07-06 15:27:32 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-07-06 15:48:35 -0700 |
commit | 6903b6464db7eb803de8bf9b897c45431f7a1d63 (patch) | |
tree | 0e6ac3e3b667c35948615e2474b9235f9c5e6621 /src | |
parent | 6893752900385ee51cc4cf75e1b672202de7578a (diff) |
altos: Switch ao_config.c __xdata to __pdata
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ao_config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ao_config.c b/src/ao_config.c index 2434bc6c..813164ea 100644 --- a/src/ao_config.c +++ b/src/ao_config.c @@ -18,8 +18,8 @@ #include "ao.h" __xdata struct ao_config ao_config; -__xdata uint8_t ao_config_loaded; -__xdata uint8_t ao_config_dirty; +__pdata uint8_t ao_config_loaded; +__pdata uint8_t ao_config_dirty; __xdata uint8_t ao_config_mutex; #define AO_CONFIG_DEFAULT_MAIN_DEPLOY 250 @@ -335,7 +335,7 @@ ao_config_log_set(void) __reentrant #endif /* HAS_EEPROM */ struct ao_config_var { - const char *str; + __code char *str; void (*set)(void) __reentrant; void (*show)(void) __reentrant; }; |