DIYmall 0.96" Inch I2c IIC Serial 128x64 Oled LCD LED White Display Module

Dependencies:   Adafruit_GFX SDFileSystem

Fork of ATT_AWS_IoT_demo by AT&T IoT

Committer:
afmiee
Date:
Tue Oct 09 20:57:34 2018 +0000
Revision:
28:4650c541b029
Parent:
15:6f2798e45099
DIYmall 0.96" Inch I2c IIC Serial 128x64 Oled LCD LED White Display Module

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ampembeng 15:6f2798e45099 1 /*
ampembeng 15:6f2798e45099 2 Copyright (c) 2010 Andy Kirkham
ampembeng 15:6f2798e45099 3
ampembeng 15:6f2798e45099 4 Permission is hereby granted, free of charge, to any person obtaining a copy
ampembeng 15:6f2798e45099 5 of this software and associated documentation files (the "Software"), to deal
ampembeng 15:6f2798e45099 6 in the Software without restriction, including without limitation the rights
ampembeng 15:6f2798e45099 7 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
ampembeng 15:6f2798e45099 8 copies of the Software, and to permit persons to whom the Software is
ampembeng 15:6f2798e45099 9 furnished to do so, subject to the following conditions:
ampembeng 15:6f2798e45099 10
ampembeng 15:6f2798e45099 11 The above copyright notice and this permission notice shall be included in
ampembeng 15:6f2798e45099 12 all copies or substantial portions of the Software.
ampembeng 15:6f2798e45099 13
ampembeng 15:6f2798e45099 14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
ampembeng 15:6f2798e45099 15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
ampembeng 15:6f2798e45099 16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
ampembeng 15:6f2798e45099 17 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
ampembeng 15:6f2798e45099 18 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ampembeng 15:6f2798e45099 19 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
ampembeng 15:6f2798e45099 20 THE SOFTWARE.
ampembeng 15:6f2798e45099 21 */
ampembeng 15:6f2798e45099 22
ampembeng 15:6f2798e45099 23 #ifndef MODSERIAL_MACROS_H
ampembeng 15:6f2798e45099 24 #define MODSERIAL_MACROS_H
ampembeng 15:6f2798e45099 25
ampembeng 15:6f2798e45099 26 #include "MODSERIAL_LPC1768.h"
ampembeng 15:6f2798e45099 27 #include "MODSERIAL_LPC11U24.h"
ampembeng 15:6f2798e45099 28 #include "MODSERIAL_KL25Z.h"
ampembeng 15:6f2798e45099 29 #include "MODSERIAL_KL05Z.h"
ampembeng 15:6f2798e45099 30 #include "MODSERIAL_KSDK.h"
ampembeng 15:6f2798e45099 31 #include "MODSERIAL_NUCLEO_F401RE.h"
ampembeng 15:6f2798e45099 32 #include "MODSERIAL_PAC_F401RB.h"
ampembeng 15:6f2798e45099 33
ampembeng 15:6f2798e45099 34 #define MODSERIAL_TX_BUFFER_EMPTY (buffer_count[TxIrq]==0)
ampembeng 15:6f2798e45099 35 #define MODSERIAL_RX_BUFFER_EMPTY (buffer_count[RxIrq]==0)
ampembeng 15:6f2798e45099 36 #define MODSERIAL_TX_BUFFER_FULL (buffer_count[TxIrq]==buffer_size[TxIrq])
ampembeng 15:6f2798e45099 37 #define MODSERIAL_RX_BUFFER_FULL (buffer_count[RxIrq]==buffer_size[RxIrq])
ampembeng 15:6f2798e45099 38
ampembeng 15:6f2798e45099 39 #endif
ampembeng 15:6f2798e45099 40