Interruptservice H

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

W:\_ME218bTeams\DoYouEvenStateMachine_Team17\ME218B\Final Project\CODE\Headers\InterruptService.

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

Page 1

/****************************************************************************
Header File
InterruptService.h
Author
Anne Alter

Date
2/14/16
****************************************************************************/

#ifndef InterruptService_H
#define InterruptService_H
#include "ES_Types.h"
#include "ES_Configure.h"

//public function prototypes


void InitializeHallEffectInterrupt(void);
void InputCaptureHallEffectResponse(void);
void InitializeWireSensingInterrupt(void);
void PeriodicWireSensingResponse(void);
void InitializeBeaconInterrupt(void);
void InputCaptureBeaconResponse(void);
void InitializeFlywheelInterrupt(void);
void InputCaptureFlywheelResponse(void);
uint8_t QueryFrequencyCode(void);
uint32_t QueryBeaconPeriod(void);
uint32_t QueryFlywheelPeriod(void);
#endif /* InterruptService_H */

You might also like