diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-11 23:36:22 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-02-20 11:16:50 -0800 |
commit | 30db58ade19ec69272a8c39c2f13d7919ca491a9 (patch) | |
tree | ffe65fef10c710a5d95510bf900d7b5a78b8dd1e /src/lambdakey-v1.0/ao_pins.h | |
parent | 33aeffc123af1f9063969acf585f1caac885ced4 (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 |