Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: X_NUCLEO_IKS01A1-f255a2c75ecb mbed-rtos mbed
userMethods.h
- Committer:
- Jacinta
- Date:
- 2016-05-17
- Revision:
- 20:014a808b3ea2
- Parent:
- 15:a72b66e1f473
- Child:
- 21:849e5636076e
File content as of revision 20:014a808b3ea2:
#ifndef USERMETHODS_H
#define USERMETHODS_H
#include <vector>
#include "log.h"
#include "sensor.h"
using std::vector;
#define QUEUESIZE 120
class UserMethods
{
public:
UserMethods(vector<log_data> vector, int num, ExpansionBoard sensor, bool lFlag);
static void logging(const void*);
static void readAllData(const void*);
static void readNData(const void*);
int deleteAllData(const void*);
int deleteNData(const void*);
static vector<log_data> * v;
static int * n;
bool flag;
static ExpansionBoard * e;
};
#endif
