Fork of my original MQTTGateway

Dependencies:   mbed-http

Committer:
vpcola
Date:
Sat Apr 08 14:43:14 2017 +0000
Revision:
0:a1734fe1ec4b
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vpcola 0:a1734fe1ec4b 1 /**
vpcola 0:a1734fe1ec4b 2 * Copyright (c) 2015 Digi International Inc.,
vpcola 0:a1734fe1ec4b 3 * All rights not expressly granted are reserved.
vpcola 0:a1734fe1ec4b 4 *
vpcola 0:a1734fe1ec4b 5 * This Source Code Form is subject to the terms of the Mozilla Public
vpcola 0:a1734fe1ec4b 6 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
vpcola 0:a1734fe1ec4b 7 * You can obtain one at http://mozilla.org/MPL/2.0/.
vpcola 0:a1734fe1ec4b 8 *
vpcola 0:a1734fe1ec4b 9 * Digi International Inc. 11001 Bren Road East, Minnetonka, MN 55343
vpcola 0:a1734fe1ec4b 10 * =======================================================================
vpcola 0:a1734fe1ec4b 11 */
vpcola 0:a1734fe1ec4b 12
vpcola 0:a1734fe1ec4b 13 #include "DigiLoggerMbedSerial.h"
vpcola 0:a1734fe1ec4b 14
vpcola 0:a1734fe1ec4b 15 using namespace DigiLog;
vpcola 0:a1734fe1ec4b 16
vpcola 0:a1734fe1ec4b 17 Serial *DigiLoggerMbedSerial::_log_serial;
vpcola 0:a1734fe1ec4b 18
vpcola 0:a1734fe1ec4b 19 /* Class constructor when using a serial port as logging channel */
vpcola 0:a1734fe1ec4b 20 DigiLoggerMbedSerial::DigiLoggerMbedSerial(Serial * log_serial, LogLevel log_level)
vpcola 0:a1734fe1ec4b 21 {
vpcola 0:a1734fe1ec4b 22 _log_serial = log_serial;
vpcola 0:a1734fe1ec4b 23
vpcola 0:a1734fe1ec4b 24 _log_level = log_level;
vpcola 0:a1734fe1ec4b 25
vpcola 0:a1734fe1ec4b 26 DigiLogger::current_logger = this;
vpcola 0:a1734fe1ec4b 27 }
vpcola 0:a1734fe1ec4b 28
vpcola 0:a1734fe1ec4b 29 /* Class destructor */
vpcola 0:a1734fe1ec4b 30 DigiLoggerMbedSerial::~DigiLoggerMbedSerial()
vpcola 0:a1734fe1ec4b 31 {
vpcola 0:a1734fe1ec4b 32 _log_serial = NULL;
vpcola 0:a1734fe1ec4b 33 DigiLogger::current_logger = NULL;
vpcola 0:a1734fe1ec4b 34 }
vpcola 0:a1734fe1ec4b 35
vpcola 0:a1734fe1ec4b 36 void DigiLoggerMbedSerial::log_buffer(char const * const buffer)
vpcola 0:a1734fe1ec4b 37 {
vpcola 0:a1734fe1ec4b 38 if (_log_serial == NULL) {
vpcola 0:a1734fe1ec4b 39 return;
vpcola 0:a1734fe1ec4b 40 }
vpcola 0:a1734fe1ec4b 41
vpcola 0:a1734fe1ec4b 42 _log_serial->printf("%s", buffer);
vpcola 0:a1734fe1ec4b 43 fflush(*_log_serial);
vpcola 0:a1734fe1ec4b 44 }
vpcola 0:a1734fe1ec4b 45
vpcola 0:a1734fe1ec4b 46
vpcola 0:a1734fe1ec4b 47