Remote I/O Sensor bus with AT&T flow and M2X cloud

Dependencies:   DHT11 FXOS8700CQ MODSERIAL mbed

Fork of Avnet_ATT_Cellular_IOT by Avnet

Committer:
agaikwad
Date:
Tue Apr 17 21:29:20 2018 +0000
Revision:
82:4e608375910a
Parent:
68:6e311c747045
Remote I/O Sensor bus with AT&T flow and M2X cloud

Who changed what in which revision?

UserRevisionLine numberNew contents of line
fkellermavnet 68:6e311c747045 1 /* ===================================================================
fkellermavnet 68:6e311c747045 2 Copyright © 2016, AVNET Inc.
fkellermavnet 68:6e311c747045 3
fkellermavnet 68:6e311c747045 4 Licensed under the Apache License, Version 2.0 (the "License");
fkellermavnet 68:6e311c747045 5 you may not use this file except in compliance with the License.
fkellermavnet 68:6e311c747045 6 You may obtain a copy of the License at
fkellermavnet 68:6e311c747045 7
fkellermavnet 68:6e311c747045 8 http://www.apache.org/licenses/LICENSE-2.0
fkellermavnet 68:6e311c747045 9
fkellermavnet 68:6e311c747045 10 Unless required by applicable law or agreed to in writing,
fkellermavnet 68:6e311c747045 11 software distributed under the License is distributed on an
fkellermavnet 68:6e311c747045 12 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
fkellermavnet 68:6e311c747045 13 either express or implied. See the License for the specific
fkellermavnet 68:6e311c747045 14 language governing permissions and limitations under the License.
fkellermavnet 68:6e311c747045 15
fkellermavnet 68:6e311c747045 16 ======================================================================== */
fkellermavnet 68:6e311c747045 17
JMF 60:2aa16fd02dfd 18 #ifndef __ITM_OUTPUT__
JMF 60:2aa16fd02dfd 19 #define __ITM_OUTPUT__
JMF 60:2aa16fd02dfd 20
JMF 60:2aa16fd02dfd 21 //This file is only used when building for ULINK output
JMF 60:2aa16fd02dfd 22
JMF 60:2aa16fd02dfd 23 #define PRINTF(format, ...) { char xyz[80]; sprintf (xyz, format, ## __VA_ARGS__); ITM_puts(xyz);}
JMF 60:2aa16fd02dfd 24 #define PUTS(st) ITM_puts((char*)st);
JMF 60:2aa16fd02dfd 25
JMF 60:2aa16fd02dfd 26
JMF 60:2aa16fd02dfd 27 int ITM_putc (int ch);
JMF 60:2aa16fd02dfd 28 int ITM_getc (void);
JMF 60:2aa16fd02dfd 29 int ITM_puts ((char *) str);
JMF 60:2aa16fd02dfd 30
JMF 60:2aa16fd02dfd 31 #endif