-
Notifications
You must be signed in to change notification settings - Fork 0
/
warnings.h
33 lines (24 loc) · 808 Bytes
/
warnings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* ========================================
*
* Copyright YOUR COMPANY, THE YEAR
* All Rights Reserved
* UNPUBLISHED, LICENSED SOFTWARE.
*
* CONFIDENTIAL AND PROPRIETARY INFORMATION
* WHICH IS THE PROPERTY OF your company.
*
* ========================================
*/
#ifndef WARNINGS_H
#define WARNINGS_H
#include "project.h"
/*** MACROS ***/
/*** GLOBAL VARIABLE PROTOTYPES ***/
/*** FUNCTION PROTOTYPES ***/
uint8 threshold_angle_comparison(uint32 variable, uint32 threshold);
uint8 threshold_light_comparison(uint32 variable, uint32 threshold);
// Test Function (Doesn't work yet)
uint8 threshold_light_comparison_test(uint32 *variable, uint32 *threshold);
/*** INTERRUPTION PROTOTYPES ***/
#endif
/* [] END OF FILE */