A copy of very incomplete program for forum

Dependencies:   mbed SDFileSystem

Committer:
roselea
Date:
Sat Mar 17 14:15:20 2012 +0000
Revision:
0:bfcb5b67b1d6

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
roselea 0:bfcb5b67b1d6 1 /*
roselea 0:bfcb5b67b1d6 2 * DebugTrace. Allows dumping debug messages/values to serial or
roselea 0:bfcb5b67b1d6 3 * to file.
roselea 0:bfcb5b67b1d6 4 *
roselea 0:bfcb5b67b1d6 5 * Copyright (C) <2009> Petras Saduikis <petras@petras.co.uk>
roselea 0:bfcb5b67b1d6 6 *
roselea 0:bfcb5b67b1d6 7 * This file is part of DebugTrace.
roselea 0:bfcb5b67b1d6 8 *
roselea 0:bfcb5b67b1d6 9 * DebugTrace is free software: you can redistribute it and/or modify
roselea 0:bfcb5b67b1d6 10 * it under the terms of the GNU General Public License as published by
roselea 0:bfcb5b67b1d6 11 * the Free Software Foundation, either version 3 of the License, or
roselea 0:bfcb5b67b1d6 12 * (at your option) any later version.
roselea 0:bfcb5b67b1d6 13 *
roselea 0:bfcb5b67b1d6 14 * DebugTrace is distributed in the hope that it will be useful,
roselea 0:bfcb5b67b1d6 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
roselea 0:bfcb5b67b1d6 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
roselea 0:bfcb5b67b1d6 17 * GNU General Public License for more details.
roselea 0:bfcb5b67b1d6 18 *
roselea 0:bfcb5b67b1d6 19 * You should have received a copy of the GNU General Public License
roselea 0:bfcb5b67b1d6 20 * along with DebugTrace. If not, see <http://www.gnu.org/licenses/>.
roselea 0:bfcb5b67b1d6 21 */
roselea 0:bfcb5b67b1d6 22
roselea 0:bfcb5b67b1d6 23 #ifndef SNATCH59_DEBUGTRACE_H
roselea 0:bfcb5b67b1d6 24 #define SNATCH59_DEBUGTRACE_H
roselea 0:bfcb5b67b1d6 25
roselea 0:bfcb5b67b1d6 26 enum eLog {OFF, ON};
roselea 0:bfcb5b67b1d6 27 enum eLogTarget {TO_SERIAL, TO_FILE};
roselea 0:bfcb5b67b1d6 28
roselea 0:bfcb5b67b1d6 29 class DebugTrace
roselea 0:bfcb5b67b1d6 30 {
roselea 0:bfcb5b67b1d6 31 public:
roselea 0:bfcb5b67b1d6 32 DebugTrace(eLog on, eLogTarget mode, const char* fileName = "log.txt", const int maxSize = 1024);
roselea 0:bfcb5b67b1d6 33 ~DebugTrace();
roselea 0:bfcb5b67b1d6 34
roselea 0:bfcb5b67b1d6 35 void clear();
roselea 0:bfcb5b67b1d6 36 void traceOut(const char* fmt, ...);
roselea 0:bfcb5b67b1d6 37
roselea 0:bfcb5b67b1d6 38 private:
roselea 0:bfcb5b67b1d6 39 eLog enabled;
roselea 0:bfcb5b67b1d6 40 eLogTarget logMode;
roselea 0:bfcb5b67b1d6 41 int maxFileSize;
roselea 0:bfcb5b67b1d6 42 int currentFileSize;
roselea 0:bfcb5b67b1d6 43 char* logFile;
roselea 0:bfcb5b67b1d6 44 char* logFileBackup;
roselea 0:bfcb5b67b1d6 45 int logFileStatus; // if things go wrong, don't write any more data to file
roselea 0:bfcb5b67b1d6 46
roselea 0:bfcb5b67b1d6 47 void backupLog();
roselea 0:bfcb5b67b1d6 48 };
roselea 0:bfcb5b67b1d6 49
roselea 0:bfcb5b67b1d6 50 #endif