diff options
author | Keith Packard <keithp@keithp.com> | 2017-04-02 15:28:45 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-04-02 15:28:45 -0700 |
commit | 7b031d5a86213364196b67f7e3f92865da8adbf9 (patch) | |
tree | 77e0c3b47b95e2b808f0c66311dfc7b68a8a6ef9 | |
parent | 62b0228aed5191c8d769f9f34143a13036e210a7 (diff) |
cortexelf-v1: Hook up serial consoles for debugging
This will make playing with serial ports easier for now.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/cortexelf-v1/ao_pins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cortexelf-v1/ao_pins.h b/src/cortexelf-v1/ao_pins.h index 91555cd4..bc8288cf 100644 --- a/src/cortexelf-v1/ao_pins.h +++ b/src/cortexelf-v1/ao_pins.h @@ -54,12 +54,12 @@ #define AO_PS2_DATA_BIT 8 #define HAS_SERIAL_1 1 -#define USE_SERIAL_1_STDIN 0 +#define USE_SERIAL_1_STDIN 1 #define SERIAL_1_PB6_PB7 1 #define SERIAL_1_PA9_PA10 0 #define HAS_SERIAL_2 1 -#define USE_SERIAL_2_STDIN 0 +#define USE_SERIAL_2_STDIN 1 #define SERIAL_2_PA2_PA3 0 #define SERIAL_2_PD5_PD6 1 |