diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-03-04 16:08:22 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-03-04 16:08:22 +0000 |
commit | 0778745ee12a4f14c001bd205e05728cc01e9633 (patch) | |
tree | 5e1c24d6bb442c4e18d464e3e8d1d5edf0d03f27 /ports/ARM7-LPC214x/lpc214x_serial.c | |
parent | 99ac65be2ac3d59a4de3b5adaa4dd9adeb80c1e2 (diff) | |
download | ChibiOS-0778745ee12a4f14c001bd205e05728cc01e9633.tar.gz ChibiOS-0778745ee12a4f14c001bd205e05728cc01e9633.tar.bz2 ChibiOS-0778745ee12a4f14c001bd205e05728cc01e9633.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@214 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'ports/ARM7-LPC214x/lpc214x_serial.c')
-rw-r--r-- | ports/ARM7-LPC214x/lpc214x_serial.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ports/ARM7-LPC214x/lpc214x_serial.c b/ports/ARM7-LPC214x/lpc214x_serial.c index beed14cd2..8f4e1d417 100644 --- a/ports/ARM7-LPC214x/lpc214x_serial.c +++ b/ports/ARM7-LPC214x/lpc214x_serial.c @@ -25,12 +25,12 @@ #include "board.h"
FullDuplexDriver COM1;
-uint8_t ib1[SERIAL_BUFFERS_SIZE];
-uint8_t ob1[SERIAL_BUFFERS_SIZE];
+static uint8_t ib1[SERIAL_BUFFERS_SIZE];
+static uint8_t ob1[SERIAL_BUFFERS_SIZE];
FullDuplexDriver COM2;
-uint8_t ib2[SERIAL_BUFFERS_SIZE];
-uint8_t ob2[SERIAL_BUFFERS_SIZE];
+static uint8_t ib2[SERIAL_BUFFERS_SIZE];
+static uint8_t ob2[SERIAL_BUFFERS_SIZE];
static void SetError(IOREG32 err, FullDuplexDriver *com) {
uint16_t sts = 0;
|