Dependencies:   PinDetect TextLCD mbed mRotaryEncoder

Committer:
cicklaus
Date:
Mon Feb 13 02:11:20 2012 +0000
Revision:
0:afb2650fb49a

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cicklaus 0:afb2650fb49a 1 /*
cicklaus 0:afb2650fb49a 2 Copyright (c) 2010 Andy Kirkham
cicklaus 0:afb2650fb49a 3
cicklaus 0:afb2650fb49a 4 Permission is hereby granted, free of charge, to any person obtaining a copy
cicklaus 0:afb2650fb49a 5 of this software and associated documentation files (the "Software"), to deal
cicklaus 0:afb2650fb49a 6 in the Software without restriction, including without limitation the rights
cicklaus 0:afb2650fb49a 7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
cicklaus 0:afb2650fb49a 8 copies of the Software, and to permit persons to whom the Software is
cicklaus 0:afb2650fb49a 9 furnished to do so, subject to the following conditions:
cicklaus 0:afb2650fb49a 10
cicklaus 0:afb2650fb49a 11 The above copyright notice and this permission notice shall be included in
cicklaus 0:afb2650fb49a 12 all copies or substantial portions of the Software.
cicklaus 0:afb2650fb49a 13
cicklaus 0:afb2650fb49a 14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
cicklaus 0:afb2650fb49a 15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
cicklaus 0:afb2650fb49a 16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
cicklaus 0:afb2650fb49a 17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
cicklaus 0:afb2650fb49a 18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
cicklaus 0:afb2650fb49a 19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
cicklaus 0:afb2650fb49a 20 THE SOFTWARE.
cicklaus 0:afb2650fb49a 21 */
cicklaus 0:afb2650fb49a 22
cicklaus 0:afb2650fb49a 23 #include "MODSERIAL.h"
cicklaus 0:afb2650fb49a 24 #include "MACROS.h"
cicklaus 0:afb2650fb49a 25
cicklaus 0:afb2650fb49a 26 namespace AjK {
cicklaus 0:afb2650fb49a 27
cicklaus 0:afb2650fb49a 28 void
cicklaus 0:afb2650fb49a 29 MODSERIAL::isr_tx(bool doCallback)
cicklaus 0:afb2650fb49a 30 {
cicklaus 0:afb2650fb49a 31 if (! _base || buffer_size[TxIrq] == 0 || buffer[TxIrq] == (char *)NULL) {
cicklaus 0:afb2650fb49a 32 _isr[TxIrq].call(&this->callbackInfo);
cicklaus 0:afb2650fb49a 33 return;
cicklaus 0:afb2650fb49a 34 }
cicklaus 0:afb2650fb49a 35
cicklaus 0:afb2650fb49a 36 while (! MODSERIAL_TX_BUFFER_EMPTY && MODSERIAL_THR_HAS_SPACE ) {
cicklaus 0:afb2650fb49a 37 _THR = txc = (uint8_t)(buffer[TxIrq][buffer_out[TxIrq]]);
cicklaus 0:afb2650fb49a 38 buffer_count[TxIrq]--;
cicklaus 0:afb2650fb49a 39 buffer_out[TxIrq]++;
cicklaus 0:afb2650fb49a 40 if (buffer_out[TxIrq] >= buffer_size[TxIrq]) {
cicklaus 0:afb2650fb49a 41 buffer_out[TxIrq] = 0;
cicklaus 0:afb2650fb49a 42 }
cicklaus 0:afb2650fb49a 43 if (doCallback) _isr[TxIrq].call(&this->callbackInfo);
cicklaus 0:afb2650fb49a 44 }
cicklaus 0:afb2650fb49a 45
cicklaus 0:afb2650fb49a 46 if ( MODSERIAL_TX_BUFFER_EMPTY ) {
cicklaus 0:afb2650fb49a 47 _IER = 1;
cicklaus 0:afb2650fb49a 48 _isr[TxEmpty].call(&this->callbackInfo);
cicklaus 0:afb2650fb49a 49 }
cicklaus 0:afb2650fb49a 50 }
cicklaus 0:afb2650fb49a 51
cicklaus 0:afb2650fb49a 52 }; // namespace AjK ends
cicklaus 0:afb2650fb49a 53
cicklaus 0:afb2650fb49a 54