pausa

Dependencies:   mbed

Fork of primercorte by edson antonio vargas villarreal

Revision:
0:0119b611fc51
Child:
1:6ed951d975cc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/memory.h	Wed Apr 11 02:19:13 2018 +0000
@@ -0,0 +1,18 @@
+#ifndef MEMORY_ARRAY_H   
+#define MEMORY_ARRAY_H  
+ 
+#include "mbed.h"
+ 
+#define MEM_SIZE 10
+#define MEM_TYPE uint32_t
+ 
+ 
+ 
+void tail_reset();
+void  mem_free();
+uint8_t mem_put(MEM_TYPE data);
+uint8_t mem_get(MEM_TYPE* data);
+ 
+ 
+ 
+#endif //  MEMORY_H 
\ No newline at end of file