-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathREADME
More file actions
56 lines (38 loc) · 1.23 KB
/
Copy pathREADME
File metadata and controls
56 lines (38 loc) · 1.23 KB
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
# i2cdev
I2C library and tools (lsi2c) for linux
I2C DEV TOOLS FOR LINUX
===================
This package contains an I2C dev library.
CONTENTS
--------
The various tools included in this package are grouped by category, each
category has its own sub-directory:
* include
C/C++ header files for I2C and SMBus access over i2c-dev. Installed by
default.
* lib
The I2C library. Installed by
default.
* lsi2c
The i2c bus scanning utility
LICENSE
-------
LGPL
INSTALLATION
------------
./autogen.sh
./configure then simply run "make" to build the library and
tools, and "make install" to install them. You also can use "make uninstall"
to remove all the files you installed. By default, files are installed in
/usr/local but you can change the location by editing the Makefile file and
setting prefix to wherever you want. You may change the C compiler and the
compilation flags as well, and also decide whether to build the static
library or not.
Optionally, you can run "make strip" prior to "make install" if you want
smaller binaries. However, be aware that this will prevent any further
attempt to debug the library and tools.
DOCUMENTATION
-------------
See files in doc folder
QUESTIONS AND BUG REPORTS
-------------------------