summaryrefslogtreecommitdiff
path: root/src/core/ao_stdio.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-05-27 17:44:01 -0600
committerKeith Packard <keithp@keithp.com>2012-05-27 17:44:01 -0600
commit29edf6d901432a1afc65900ff599c963edac5a2b (patch)
tree6d1c699865c52ea5a473266766756387f0e20dc4 /src/core/ao_stdio.c
parent5fd869b244f8f2b76258dc31a5507a73fd47cf1d (diff)
altos: Make telescience-v0.1 build with new ao_data struct
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/core/ao_stdio.c')
-rw-r--r--src/core/ao_stdio.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/ao_stdio.c b/src/core/ao_stdio.c
index 9b4ea473..656b23c9 100644
--- a/src/core/ao_stdio.c
+++ b/src/core/ao_stdio.c
@@ -53,14 +53,14 @@
#endif
#define USE_SERIAL_STDIN (USE_SERIAL_0_STDIN + \
- USE_SERIAL_1_STDIN | \
- USE_SERIAL_2_STDIN | \
- USE_SERIAL_3_STDIN | \
- USE_SERIAL_4_STDIN | \
- USE_SERIAL_5_STDIN | \
- USE_SERIAL_6_STDIN | \
- USE_SERIAL_7_STDIN | \
- USE_SERIAL_8_STDIN | \
+ USE_SERIAL_1_STDIN + \
+ USE_SERIAL_2_STDIN + \
+ USE_SERIAL_3_STDIN + \
+ USE_SERIAL_4_STDIN + \
+ USE_SERIAL_5_STDIN + \
+ USE_SERIAL_6_STDIN + \
+ USE_SERIAL_7_STDIN + \
+ USE_SERIAL_8_STDIN + \
USE_SERIAL_9_STDIN)
#define AO_NUM_STDIOS (HAS_USB + PACKET_HAS_SLAVE + USE_SERIAL_STDIN)