diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-11 23:36:22 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | 7a6c8609ccb670caeab72b80111bec455ea960a7 (patch) | |
tree | 293ce14f3fec27b8dca5e27426d02b0f52da1ad9 /src/lambdakey-v1.0/ao_pins.h | |
parent | d70a79fece4077c263a5773c8849ec60c6b649bc (diff) |
altos/lambdakey: Get save/restore working
Need the HSI clock running for the flash hardware to work.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lambdakey-v1.0/ao_pins.h')
-rw-r--r-- | src/lambdakey-v1.0/ao_pins.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lambdakey-v1.0/ao_pins.h b/src/lambdakey-v1.0/ao_pins.h index b8429c55..167d0857 100644 --- a/src/lambdakey-v1.0/ao_pins.h +++ b/src/lambdakey-v1.0/ao_pins.h @@ -25,9 +25,13 @@ #define AO_LED_RED (1 << LED_PIN_RED) #define AO_LED_PANIC AO_LED_RED #define AO_CMD_LEN 128 -#define AO_LISP_POOL 3072 +#define AO_LISP_POOL_TOTAL 3072 +#define AO_LISP_SAVE 1 #define AO_STACK_SIZE 1024 +/* need HSI active to write to flash */ +#define AO_NEED_HSI 1 + #define LEDS_AVAILABLE (AO_LED_RED) #define AO_POWER_MANAGEMENT 0 |