Dependencies: PinDetect TextLCD mbed mRotaryEncoder
MODSERIAL/FLUSH.cpp@0:afb2650fb49a, 2012-02-13 (annotated)
- Committer:
- cicklaus
- Date:
- Mon Feb 13 02:11:20 2012 +0000
- Revision:
- 0:afb2650fb49a
Who changed what in which revision?
User | Revision | Line number | New 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::flushBuffer(IrqType type) |
cicklaus | 0:afb2650fb49a | 30 | { |
cicklaus | 0:afb2650fb49a | 31 | uint32_t ier = _IER; |
cicklaus | 0:afb2650fb49a | 32 | switch(type) { |
cicklaus | 0:afb2650fb49a | 33 | case TxIrq: _IER &= ~(1UL << 1); break; |
cicklaus | 0:afb2650fb49a | 34 | case RxIrq: _IER &= ~(1UL << 0); break; |
cicklaus | 0:afb2650fb49a | 35 | } |
cicklaus | 0:afb2650fb49a | 36 | buffer_in[type] = 0; |
cicklaus | 0:afb2650fb49a | 37 | buffer_out[type] = 0; |
cicklaus | 0:afb2650fb49a | 38 | buffer_count[type] = 0; |
cicklaus | 0:afb2650fb49a | 39 | buffer_overflow[type] = 0; |
cicklaus | 0:afb2650fb49a | 40 | switch(type) { |
cicklaus | 0:afb2650fb49a | 41 | case TxIrq: _FCR = MODSERIAL_FIFO_TX_RESET; break; |
cicklaus | 0:afb2650fb49a | 42 | case RxIrq: _FCR = MODSERIAL_FIFO_RX_RESET; break; |
cicklaus | 0:afb2650fb49a | 43 | } |
cicklaus | 0:afb2650fb49a | 44 | _IER = ier; |
cicklaus | 0:afb2650fb49a | 45 | } |
cicklaus | 0:afb2650fb49a | 46 | |
cicklaus | 0:afb2650fb49a | 47 | }; // namespace AjK ends |