internals.md: add more internals documentation
[contrib/mraa.git] / docs / index.md
1 libmraa - Low Level Skeleton Library for Communication on Intel platforms
2 ==============
3
4 Libmraa is a C/C++ library with bindings to javascript & python to interface
5 with the IO on Galileo, Edison & other platforms, with a structured and sane
6 API where port names/numbering matches the board that you are on. Use of
7 libmraa does not tie you to specific hardware with board detection done at
8 runtime you can create portable code that will work across the supported
9 platforms.
10
11 The intent is to make it easier for developers and sensor manufacturers to map 
12 their sensors & actuators on top of supported hardware and to allow control of
13 low level communication protocol by high level languages & constructs.
14
15 ## API
16
17 These interfaces allow you to interact with all libmraa functionality. The C++
18 classes directly wrap the C API and provide a near 1:1 mapping of
19 functionality.
20
21 <center>
22 | C API Modules          | C++ API Classes              |
23 |:----------------------:|:----------------------------:|
24 | @ref gpio.h "gpio"     | @ref mraa::Gpio "Gpio class" |
25 | @ref i2c.h "i2c"       | @ref mraa::I2c "I2c class"   |
26 | @ref aio.h "aio"       | @ref mraa::Aio "Aio class"   |
27 | @ref pwm.h "pwm"       | @ref mraa::Pwm "Pwm class"   |
28 | @ref spi.h "spi"       | @ref mraa::Spi "Spi class"   |
29 | @ref uart.h "uart"     | @ref mraa::Uart "Uart class" |
30 | @ref common.h "common" | @ref mraa "common"           |
31 </center>
32
33 ### Hello Mraa
34 @snippet hellomraa.c Interesting
35
36 ## Supported platforms
37
38 Specific platform information for supported platforms is documented here:
39
40 - @ref galileorevd
41 - @ref galileorevh
42 - @ref edison
43 - @ref de3815
44 - @ref minnowmax
45 - @ref rasppib
46
47 ### ENV RECOMENDATIONS
48
49 All of these are 'optional', however they are recommended. Only a C compiler,
50 cmake, libm and pthreads are technically required to compile.
51
52 - Swig 3.0.1+ built with node.js (0.10.x) & python support
53 - doxygen
54 - sphinx (requires doxygen)
55 - pygments
56
57 ## COMPILING
58
59 More information on compiling is @ref building page.
60
61 ## CONTRIBUTING
62
63 Please see the @ref contributing page, the @ref internals page may also be of
64 use.
65
66 ## API Changelog
67
68 This changelog is meant as a quick & rough guide to what has changed between
69 versions. The API is now fairly stable but when new calls/features are added
70 they are listed here. Anything pre 0.2.x is ignored.
71
72 **0.5.4**
73   * pwm read_* fix introduced in 0.5.3
74   * improved npmpkg support
75
76 **0.5.3**
77   * OE toolchain support added to CMake
78   * Various UART fixes
79   * SPI add CS exposure
80   * Remove functions from mraa.c into modules
81   * Rework of support for mmap
82   * Intel Edison MMAP support added. Read and Write
83   * I2C clean up, add cleaner functions
84   * MinnowBoard Max support added
85   * PWM period is written before duty
86   * Node GYP build supported added
87   * Add Get Platform Name function
88
89 **0.5.2**
90   * pwm improvement & bugfix
91   * spi mraa_spi_bit_per_word fix
92   * new spi transfer function
93   * i2c object api uses uint8_t
94   * i2c readReg() calls added
95   * edison i2c bus now defaults to a sensible value
96   * edison uart enable support
97   * edison hardware CS exposed as IO10
98   * DE3815tykhe NUC support
99
100 **0.5.1**
101   * Intel Edison - Mini breakout board support
102   * Change to use syslog throughout instead of printing to stderr.
103   * Fix misc issues brought up throuh coverity scans
104   * Clear up Analog call documentation
105
106 **0.5.0**
107   * Intel Edison - Arduino board support.
108   * Boost Allowable i2c busses to 12
109   * Additional platform hooks added
110   * ADC is now 10bits by default on all platforms but can be changed
111
112 **0.4.5**
113   * if only one spidev we default to it reguardless of number
114   * mraa_pwm_config_ms & mraa_pwm_config_percent functions added
115   * Uart C++ class added, adds python & node support
116   * galileo gen2 gpio modes supported
117
118 **0.4.4**
119   * prefix SPI mode with MRAA_SPI_
120   * added C++ adc bitness calls
121
122 **0.4.3**
123   * SPI Mode function now functional, API Change in SPI
124   * I2C read in swig worked on.
125   * Galileo Gen 2: PWM setting period sets all channel's period
126   * Galileo Gen 2: I2C setup now specific to Gen 2.
127   * General commits around freeing memory at the right times.
128
129 **0.4.2**
130   * Barebone UART module added.
131   * Hook branch merged.
132   * I2C init hooks added.
133   * Intel Galileo Gen 2, I2C gpio pins now go hiz input when I2C initialised.
134
135 **0.4.1**
136   * Rename python & nodejs modules to mraa
137   * common.hpp introduced for C++
138   * python & nodejs modules can now take binary strings for Spi & I2c
139   * improved Aio module and clear bitness
140   * Improved Galileo Gen 2 support
141
142 **0.4.0**
143   * Rename to mraa
144   * get_platform_type function added.
145
146 **0.3.1**
147   * Initial Intel Galileo Gen 2 support
148   * mraa_gpio_isr parameters added.
149   * Detection of different supported platforms added.
150
151 **0.3.0**
152   * mraa_i2c_read now returns length of read
153
154 **0.2.9**
155   * Add global mraa.h & mraa.hpp headers
156   * usage of "gpio.h" is not legal you need to use "mraa/gpio.h" unless adding
157     -L/usr/include/mraa
158
159 **0.2.8**
160   * Added mraa_set_priority call
161   * Added mmap gpio call mraa_gpio_use_mmaped
162
163 **0.2.7**
164   * C++ API now uses basic types and not unistd types as C
165   * Clearer and consistent use of unistd tpyes in C api
166
167 **0.2.6**
168   * C++ examples added, using c++ headers/api.
169   * moved to open instead of fopen in all modules
170   * rename mraa_check functions and made them internal to mraa only.
171   * removed "export" functions from api
172   * Intel Galileo Gen 1 (rev d) fixes, incorrect definition of some items
173   * SPI, implementation completed.
174   * I2C internal function, completed.
175   * PWM fix bug in period set method.
176   * Swig upstream can be used for building.
177   * No longer builds docs on default cmake, needs flag
178   * GPIO/PWM ownership guard prevents closing on existing pins, still can be forced.
179
180 **0.2.5**
181   * C++/Python/Node Enums/const names now do not contain MRAA_GPIO
182   * Enum type declaration for C++ changed
183   * Python/Node get_version() -> GetVersion()
184   * i2c read calls don't use const char* and i2c write calls do
185
186 **0.2.4**
187   * All mraa_ contexts now are pointers to the actual struct which is not
188     delcared in the header. The only end user change is that instead of
189     returning a type mraa_gpio_context pointer mraa_gpio_init() now returns a
190     mraa_gpio_context (which is actually a pointer to struct _gpio internally).
191   * C++ API is available, use the .hpp headers and add stdc++  to the linker
192     flags.
193   * Initial SPI implementation is provided
194
195 **0.2.3**
196   * mraa_aio_read_u16() -> mraa_aio_read()
197   * mraa_aio_read() now returns a uint16_t instead of an unsigned int
198
199 **0.2.2**
200   * First version with API considered 'stable'