-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPressure.h
More file actions
27 lines (24 loc) · 702 Bytes
/
Copy pathPressure.h
File metadata and controls
27 lines (24 loc) · 702 Bytes
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
/*
* Pressure.h
* This library handles the MPRL absolute pressure sensor
*
* Dependencies:
* Pins.h - Has all configuration
* Interrupts - Must be enabled
* SECROM - Utilized in SPI configuration
* External interrupt - Utilized for conversion complete
* GPIO - Utilized to initialize the sensor
* Sensors.h - Houses struct for data output
*
* Created: 5/6/2019 11:07:16 AM
* Author: Jordan
*/
#ifndef PRESSURE_H_
#define PRESSURE_H_
#include "sam.h"
#include "Pins.h"
#include "Sensors.h"
void pressureConfig(void);
void pressureStart(void);
void pressureHalt(void);
#endif /* PRESSURE_H_ */