MAIN

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

log.hpp

Committer:
J_Satchell
Date:
2017-05-15
Revision:
37:13f74964a045
Parent:
36:af6abc6f7590

File content as of revision 37:13f74964a045:

#ifndef LOG_H
#define LOG_H
#include "Data.hpp"

void log_init();
void log_push(Data data);
Data log_pop();
int log_length();
Data log_get(int index);

#endif