On linux, Appendix b, Digital input/output control – Lanner LEC-2110 User Manual
Page 36
![background image](https://www.manualsdir.com/files/820386/content/doc036.png)
36
Digital Input/Output Control
Appendix B
Embedded and Industrial Computing
On Linux
Executing the commands through the Command Line:
# dio_tst
The program will drive output pin with specific value and
read status of input pin. If you have external loopback
which connects input to output pins directly, the input
value should be identical with the output value.
Note:
For DOS environment, use DJGPP as compiler
4.
and the makefile: Makefile.dos.
For Linux, support kernel versions are 2.4.x and
5.
2.6.x. Use the makefile:Makefile.linux.
For FreeBSD, support version is FreeBSD 8.0.
6.
use the makefile: Makefile.
Build
To build program source code on Linux platform, use the
following steps as a guideline:
Copy the proper makefile from the Driver and Manual
1.
CD to your system
Set the access mode with these two parameters
2.
by editing the Makefile.linux directly: DIRECT_IO_
ACCESS= [0|1] (enter either 1 or 0) and LANNER_
DRIVER= [0|1] (enter either 1 or 0). 1 is for direct access
and no driver is needed. You will only need to execute
the program directly. However, when it equaled to 0,
driver installation is needed. Refer to the following
Install section for more details.
Type make to build source code:
3.
make Makefile (Note: omit the file extensions)
After compiled, the executable program (bpwd_tst) and
the driver (bpwd_drv.ko) will be in the bin subdirecto
Install
The installation procedures depend on the access mode
that you have set by using the above mentioned method.
If you have set DIRECT_IO_ACCESS=1, driver installation is
not necessary. Proceed to the next section on executing
If you have set DIRECT_IO_ACCESS=0, Lanner bypass
driver needs to be installed. Install the driver and create
a node in the /dev directory as shown in the following
example:
For Linux:
Insert module and create node in /dev as below
example:
#insmod dio_drv.[k]o
#mknod /dev/dio_drv c 240 0
For FreeBSD:
Insert module as below example:
#kldload -v ./dio_drv.ko
I/O Address
DIO Address
Address
Description
0x2e
SUPERIO_INDEX
0x2f
SUPERIO_DATA
GPIO4,
GPIO50~GPIO52
Digital Input
GPIO0~GPIO3
Digital Output
Execute
Once build completed, application (and driver) is available
in bin sub-directory.
Just run “dio_tst” for Digital IO test. This program will drive
output pin with specific value and read status of input
pin. If you have external loopback which connects input
to output pins directly, the input value should be identical
with output value.
screen capture of the execution result: