Nelson Santos / Mbed 2 deprecated trabalho

Dependencies:   X_NUCLEO_IKS01A1-f255a2c75ecb mbed-rtos mbed

userMethods.h

Committer:
Jacinta
Date:
2016-05-15
Revision:
7:ed4a10ebe720
Parent:
3:1f17245afc88
Child:
15:a72b66e1f473

File content as of revision 7:ed4a10ebe720:

#ifndef USERMETHODS_H
#define USERMETHODS_H

#include <vector>
#include "log.h"

using std::vector;

#define QUEUESIZE 120

class UserMethods
{
    public:
    UserMethods(vector<log_data> vector, int num);
    static void logging(const void*);
    static void readAllData(const void*);
    static void readNData(const void*);
    static vector<log_data> * v;
    static int * n;
};

#endif