MAIN

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Committer:
J_Satchell
Date:
Mon May 15 08:58:08 2017 +0000
Revision:
36:af6abc6f7590
Almost done

Who changed what in which revision?

UserRevisionLine numberNew contents of line
J_Satchell 36:af6abc6f7590 1 #ifndef LOG_H
J_Satchell 36:af6abc6f7590 2 #define LOG_H
J_Satchell 36:af6abc6f7590 3 #include "Data.hpp"
J_Satchell 36:af6abc6f7590 4
J_Satchell 36:af6abc6f7590 5 void log_init();
J_Satchell 36:af6abc6f7590 6 void log_push(Data data);
J_Satchell 36:af6abc6f7590 7 Data log_pop();
J_Satchell 36:af6abc6f7590 8 int log_length();
J_Satchell 36:af6abc6f7590 9 Data log_get(int index);
J_Satchell 36:af6abc6f7590 10
J_Satchell 36:af6abc6f7590 11 #endif