forked from Wicker25/Rpi-hw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
168 lines (102 loc) · 5.62 KB
/
ChangeLog
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
ChangeLog of Rpi-hw - A free C++ library designed to manage the Raspberry Pi's GPIO connector and its other buses.
============ Rpi-hw 0.7.1 - urgency=low ===========
2013-12-24 Wicker25 < [email protected] >
* all: Added `__ENUM` and `__ENUM_PARAMS` macros.
* utils.hpp: Added support for UTF-16 and UTF-32 string to the `utils::align`.
* hd44780.hpp: Added support for Unicode strings.
============ Rpi-hw 0.7.0 - urgency=low ===========
2013-12-07 Wicker25 < [email protected] >
* all: Beautified all code! :)
Added I2C support.
Added `driver::mcp23017` to support 16-Bit I/O expander with I2C.
Added `driver::mcp23008` and `driver::mcp23s08` to support 8-Bit I/O expander with I2C/SPI.
Renamed `ioexpander.hpp` to `io-expander.hpp` and `ioexpander` to `io_expander`.
Renamed `hc-sr04.hpp` to `hcsr04.hpp`.
* iface/base.hpp: Renamed `numOfPins` to `size`.
* display/hd44780.hpp: Improved performance and style.
Added `setTypingDelay` to set the typing delay between individual characters.
Added the text flags parameter to the function `write`.
============ Rpi-hw 0.6.0 - urgency=low ===========
2013-11-22 Wicker25 < [email protected] >
* all: Added directory `driver` containing the main hardware drivers.
Renamed `gpio` to `driver::bcm2835`.
Added `driver::mcp23s17` to support 16-Bit I/O expander with SPI.
Added new class `gpio` to handles all GPIOs.
Removed class `pcd8544-skeleton` and `pcd8544-spi`.
Removed `rpi-gpio`.
Improved names of enumeration constants.
Renamed `PUD_OFF` to `PULL_OFF`.
Renamed `pud_mode` to `pull_mode`.
* keypad/base.hpp: Changed the input polarity using pull-up resistors (now it works with I/O expanders).
============ Rpi-hw 0.5.2 - urgency=medium ===========
2013-10-22 Wicker25 < [email protected] >
* keypad/base.hpp: Added the refresh rate parameter and support for event listener.
============ Rpi-hw 0.5.1 - urgency=medium ===========
2013-09-20 Wicker25 < [email protected] >
* all: Moved SPI sources into the directory `rpi-hw/iface`.
Added SPI support to the PCD8544 controller.
============ Rpi-hw 0.5.0 - urgency=low =============
2013-09-15 Wicker25 < [email protected] >
* all: Added SPI support.
============ Rpi-hw 0.4.2 - urgency=high =============
2013-08-07 Wicker25 < [email protected] >
* keypad/base.cpp: Fixed bad initialization.
Added keymap support.
============ Rpi-hw 0.4.1 - urgency=low =============
2013-05-06 Wicker25 < [email protected] >
* all: Added class `hcsr04` to manage HC-SR04 ultrasonic distance sensors.
* gpio.hpp: Replaced `m_addr` with `m_gpio`.
* utils.hpp: Rewrote the function `nsleep`.
============ Rpi-hw 0.4.0 - urgency=low =============
2013-05-06 Wicker25 < [email protected] >
* all: Welcome C++11!
Replaced UTF8-CPP with C++ built-in UTF-32.
Replaced `bitset` with `std::vector< bool >` specialization.
* bitmap.hpp, designer.hpp: Replaced the type of the bitmap buffer.
* freetype.cpp: Added file checking.
* hd44780.cpp: Fixed line addressing.
============ Rpi-hw 0.3.1 - urgency=medium =============
2013-05-01 Wicker25 < [email protected] >
* all: Fixed `rpi-hw.pc` and splitted CMake's files.
Now headers of inline functions are automatically included.
============ Rpi-hw 0.3 - urgency=low =============
2013-04-28 Wicker25 < [email protected] >
* all: Added class `pcd8544` to manage PCD8544 controller.
Added class `stepper` to manage stepper motors.
Added class `designer`to draw shapes, images, texts, etc.
Added Unicode support (using UTF8-CPP).
Added Images support (using GraphicsMagick++).
Added Fonts support (using FreeType).
Moved methods `sleep`, `msleep`, and `usleep` into the namespace `time`.
Improved virtual interface classes.
* utils.hpp: Renamed `mcopy` to `memdup`.
Improved word wrap algorithm.
* CMakeLists.txt: Improved! ;D
============ Rpi-hw 0.2.5 - urgency=high =============
2012-12-17 Wicker25 < [email protected] >
* CMakeLists.txt: Fixed recognition of the RPi Revision.
* rpi-hw.pc.in: Fixed the path to the header files.
============ Rpi-hw 0.2.4 - urgency=low =============
2012-11-28 Wicker25 < [email protected] >
* doxy.conf.in: Updated to the Doxygen's version 1.8.1.2.
============ Rpi-hw 0.2.3 - urgency=low =============
2012-11-27 Wicker25 < [email protected] >
* all: Added Doxygen documentation (use `make doc` to build it!).
Changed `README` to `README.md`.
============ Rpi-hw 0.2.2 - urgency=low =============
2012-11-18 Wicker25 < [email protected] >
* all: Added class `hd44780` to manage LCD displays.
Renamed `cpu.hpp` to `rpi.hpp`.
Renamed `macro.hpp` to `utils.hpp`.
Improved base interface classes.
* iface/base.hpp: Improved methods to manage GPIOs.
* iface/utils.hpp: Added methods `malloc` and `memset`.
Added methods `sleep`, `msleep`, and `usleep`.
Added method `align` to align a text.
============ Rpi-hw 0.2.1 - urgency=low =============
2012-10-26 Wicker25 < [email protected] >
* all: Translated all comments to english - I hope they are clear!
Improved error messages.
============ Rpi-hw 0.2.0 - urgency=low =============
2012-10-24 Wicker25 < [email protected] >
* all: Added this ChangeLog file to the project.