1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/*-------------------------------------------------------------------------
_ser.c - this file contains a simple interrupt driven serial driver with
buffer (no check for overflow!!!).
Copyright (C) 1999, Sandeep Dutta <sandeep.dutta AT ieee.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this library; see the file COPYING. If not, write to the
Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
As a special exception, if you link this library with other files,
some of which are compiled with SDCC, to produce an executable,
this library does not by itself cause the resulting executable to
be covered by the GNU General Public License. This exception does
not however invalidate any other reasons why the executable file
might be covered by the GNU General Public License.
-------------------------------------------------------------------------*/
/*KA******************************************************************
* PROJECT: PL-One/8052
**********************************************************************
* FILE: ser.c
**********************************************************************
* CHANGES:
* date author description
* --------------------------------------------------------------------
* 04/26/99 we final
* 04/27/99 we comments
**********************************************************************
* DESCRIPTION:
* This file contains a simple interrupt driven serial driver with
* buffer (no check for overflow!!!).
**********************************************************************
* FUNCTIONS DECLARED:
* ser_init Initialization; must be called first
* ser_putc output one char on the serial line
* ser_getc return a char if one has been received, else 0
* ser_printString print a 0-terminated string
* ser_charAvail return 1 if a char arrived on serial line
**********************************************************************
* NOTE:
* Remember to enable all interrupts (EA=1) outside of this module!!
**********************************************************************
* COMPILE TIME OPTIONS: -
* DEBUG OPTIONS: -
******************************************************************KE*/
#include <8052.h>
#include "ser.h"
#define NON_BLOCKING
unsigned char __xdata ser_txIndexIn;
unsigned char __xdata ser_txIndexOut;
unsigned char __xdata ser_rxIndexIn;
unsigned char __xdata ser_rxIndexOut;
unsigned char __xdata ser_txBuffer[0x100];
unsigned char __xdata ser_rxBuffer[0x100];
static __bit ser_txBusy;
void
ser_init(void)
{
ES = 0;
ser_txBusy = 0;
ser_txIndexIn = 0;
ser_txIndexOut = 0;
ser_rxIndexIn = 0;
ser_rxIndexOut = 0;
T2CON = 0x30;
/* Baudrate = 19200, oscillator frq. of my processor is 21.4772 MHz */
RCAP2H = 0xFF;
RCAP2L = 0xDD;
/* enable counter */
T2CON = 0x34;
SCON = 0x50;
if (TI) {
TI = 0;
}
if (RI) {
RI = 0;
}
ES=1;
}
void
ser_interrupt_handler(void) __interrupt 4 __using 1
{
ES=0;
if (RI) {
RI = 0;
ser_rxBuffer[ser_rxIndexIn++] = SBUF;
}
if (TI) {
TI = 0;
if (ser_txIndexIn == ser_txIndexOut) {
ser_txBusy = 0;
}
else {
SBUF = ser_txBuffer[ser_txIndexOut++];
}
}
ES=1;
}
void
ser_putc(unsigned char c)
{
ES=0;
if (ser_txBusy) {
ser_txBuffer[ser_txIndexIn++] = c;
}
else {
ser_txBusy = 1;
SBUF = c;
}
ES=1;
}
unsigned char
ser_getc(void)
{
char tmp;
#ifdef NON_BLOCKING
if (ser_rxIndexIn != ser_rxIndexOut) {
tmp = ser_rxBuffer[ser_rxIndexOut++];
}
else {
tmp = 0;
}
#endif
return(tmp);
}
void
ser_printString(char *String)
{
while (*String) {
ser_putc(*String++);
}
}
char
ser_charAvail(void)
{
char ret = 0;
if (ser_rxIndexIn != ser_rxIndexOut) {
ret = 1;
}
return(ret);
}
/*********************End of File************************************/
|