-
Notifications
You must be signed in to change notification settings - Fork 10
/
ChangeLog
180 lines (108 loc) · 5.91 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
169
170
171
172
173
174
175
176
177
178
179
180
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.3 - urgency=high ===========
2014-03-02 Wicker25 < wicker25@gmail.com >
* mcp23x08.hpp: Fixed addresses of the registers.
============ Rpi-hw 0.7.2 - urgency=low ===========
2013-12-26 Wicker25 < wicker25@gmail.com >
* hd44780.hpp: Added support for `std::wstring`.
============ Rpi-hw 0.7.1 - urgency=low ===========
2013-12-24 Wicker25 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* keypad/base.hpp: Added the refresh rate parameter and support for event listener.
============ Rpi-hw 0.5.1 - urgency=medium ===========
2013-09-20 Wicker25 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* all: Added SPI support.
============ Rpi-hw 0.4.2 - urgency=high =============
2013-08-07 Wicker25 < wicker25@gmail.com >
* keypad/base.cpp: Fixed bad initialization.
Added keymap support.
============ Rpi-hw 0.4.1 - urgency=low =============
2013-05-06 Wicker25 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* doxy.conf.in: Updated to the Doxygen's version 1.8.1.2.
============ Rpi-hw 0.2.3 - urgency=low =============
2012-11-27 Wicker25 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* 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 < wicker25@gmail.com >
* all: Added this ChangeLog file to the project.