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 int
cicklaus 0:afb2650fb49a 29 MODSERIAL::__getc(bool block)
cicklaus 0:afb2650fb49a 30 {
cicklaus 0:afb2650fb49a 31 // If no buffer is in use fall back to standard RX FIFO usage.
cicklaus 0:afb2650fb49a 32 // Note, we must block in this case and ignore bool "block"
cicklaus 0:afb2650fb49a 33 // so as to maintain compat with Mbed Serial.
cicklaus 0:afb2650fb49a 34 if (buffer_size[RxIrq] == 0 || buffer[RxIrq] == (char *)NULL) {
cicklaus 0:afb2650fb49a 35 while(! MODSERIAL_RBR_HAS_DATA ) ;
cicklaus 0:afb2650fb49a 36 return (int)(_RBR & 0xFF);
cicklaus 0:afb2650fb49a 37 }
cicklaus 0:afb2650fb49a 38
cicklaus 0:afb2650fb49a 39 if (block) { while ( MODSERIAL_RX_BUFFER_EMPTY ) ; } // Blocks.
cicklaus 0:afb2650fb49a 40 else if ( MODSERIAL_RX_BUFFER_EMPTY ) return -1;
cicklaus 0:afb2650fb49a 41
cicklaus 0:afb2650fb49a 42 int c = buffer[RxIrq][buffer_out[RxIrq]];
cicklaus 0:afb2650fb49a 43 buffer_out[RxIrq]++;
cicklaus 0:afb2650fb49a 44 if (buffer_out[RxIrq] >= buffer_size[RxIrq]) {
cicklaus 0:afb2650fb49a 45 buffer_out[RxIrq] = 0;
cicklaus 0:afb2650fb49a 46 }
cicklaus 0:afb2650fb49a 47
cicklaus 0:afb2650fb49a 48 // If we have made space in the RX Buffer then copy over
cicklaus 0:afb2650fb49a 49 // any characters in the RX FIFO that my reside there.
cicklaus 0:afb2650fb49a 50 // Temporarily disable the RX IRQ so that we do not re-enter
cicklaus 0:afb2650fb49a 51 // it under interrupts.
cicklaus 0:afb2650fb49a 52 if ( ! MODSERIAL_RX_BUFFER_FULL ) {
cicklaus 0:afb2650fb49a 53 uint32_t ier = _IER;
cicklaus 0:afb2650fb49a 54 _IER &= ~(1UL << 0);
cicklaus 0:afb2650fb49a 55 isr_rx();
cicklaus 0:afb2650fb49a 56 _IER = ier;
cicklaus 0:afb2650fb49a 57 }
cicklaus 0:afb2650fb49a 58
cicklaus 0:afb2650fb49a 59 buffer_count[RxIrq]--;
cicklaus 0:afb2650fb49a 60 return c;
cicklaus 0:afb2650fb49a 61 }
cicklaus 0:afb2650fb49a 62
cicklaus 0:afb2650fb49a 63 }; // namespace AjK ends