Master Thesis  V1.0
Research and Design of Sensor Node for NMSD Treatment
util.h
Go to the documentation of this file.
1 /***************************************************************************/
8 /*
9  * util.h
10  *
11  * Created on: Mar 11, 2020
12  * Author: jonac
13  */
14 
15 #ifndef INC_UTIL_H_
16 #define INC_UTIL_H_
17 
18 #include "stdint.h"
19 #include "stdbool.h"
20 
21 bool Check_Equal(uint8_t *arr1, uint8_t *arr2, uint8_t length);
22 void blink(uint8_t times);
23 
24 #endif /* INC_UTIL_H_ */
Check_Equal
bool Check_Equal(uint8_t *arr1, uint8_t *arr2, uint8_t length)
Check if two arrays are equal.
Definition: util.c:36
blink
void blink(uint8_t times)
Function to blink LED on sensor node.
Definition: util.c:57