blob: ff131ef299ceed597eaf9eb6f1237c01eee564ff (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
* File: pin.hpp
* Author: naopross
*
* Created on May 3, 2018, 8:02 PM
*/
#ifndef PIN_HPP
#define PIN_HPP
extern "C" {
#include <xc.h>
}
template<unsigned bit>
class pin {
public:
enum class mode : unsigned
{ INPUT = 1, OUTPUT = 0 };
enum class state : unsigned
{ ON = 1, OFF = 0 };
pin() = delete;
template<typename latch_T, typename tris_T, typename port_T>
pin(latch_T *latch, tris_T *tris, port_T *port);
virtual ~pin();
void set_mode(unsigned m);
void set_mode(mode m);
state read() const;
void set(unsigned s);
void set(state s);
void toggle();
bool operator==(const pin<bit> &other) const;
bool operator!=(const pin<bit> &other) const;
private:
volatile uint8_t *_latch;
volatile uint8_t *_tris;
volatile uint8_t *_port;
};
#endif /* PIN_HPP */
|