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-14
- Revision:
- 2:0b8065489409
- Parent:
- 0:1eaebb55408a
- Child:
- 3:1f17245afc88
File content as of revision 2:0b8065489409:
#ifndef USERMETHODS_H
#define USERMETHODS_H
#include "log.h"
#include <vector>
using std::vector;
#define QUEUESIZE 120
class UserMethods
{
public:
static void logging(const void*);
static void readAllData(vector<log_data>& v);
static void readNData(vector<log_data>& v, int &n);
};
#endif
