summaryrefslogtreecommitdiffstats
path: root/hal/pin.hpp
blob: 6625f904c13c344fd4c33058dd2ae790c50f8395 (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
/* 
 * File:   pin.hpp
 * Author: naopross
 *
 * Created on May 3, 2018, 8:02 PM
 */

#ifndef PIN_HPP
#define	PIN_HPP

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 */