Skip to content

Commit 860a74f

Browse files
Pierre-Luc Tessier Gagnéhardbyte
authored andcommitted
Renamed ics_neovi interface to neovi
1 parent 1d3e373 commit 860a74f

5 files changed

Lines changed: 6 additions & 7 deletions

File tree

can/interface.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
'iscan': ('can.interfaces.iscan', 'IscanBus'),
2020
'virtual': ('can.interfaces.virtual', 'VirtualBus'),
2121
'neovi': ('can.interfaces.ics_neovi', 'NeoViBus'),
22-
'icsneovi': ('can.interfaces.ics_neovi', 'NeoViBus'),
2322
'vector': ('can.interfaces.vector', 'VectorBus'),
2423
'slcan': ('can.interfaces.slcan', 'slcanBus')
2524
}

can/interfaces/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
VALID_INTERFACES = set(['kvaser', 'serial', 'pcan', 'socketcan_native',
77
'socketcan_ctypes', 'socketcan', 'usb2can', 'ixxat',
88
'nican', 'iscan', 'vector', 'virtual', 'neovi',
9-
'icsneovi', 'slcan'])
9+
'slcan'])

doc/interfaces.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The available interfaces are:
2020
interfaces/usb2can
2121
interfaces/nican
2222
interfaces/iscan
23-
interfaces/ics_neovi
23+
interfaces/neovi
2424
interfaces/vector
2525
interfaces/virtual
2626

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ICSNEOVI Interface
1+
NEOVI Interface
22
==================
33

44
.. warning::
@@ -14,7 +14,7 @@ wrapper on Windows.
1414

1515
Installation
1616
------------
17-
This icsneovi interface requires the installation of the ICS neoVI DLL and python-ics
17+
This neovi interface requires the installation of the ICS neoVI DLL and python-ics
1818
package.
1919

2020
- Download and install the Intrepid Product Drivers
@@ -34,7 +34,7 @@ An example `can.ini` file for windows 7:
3434
::
3535

3636
[default]
37-
interface = icsneovi
37+
interface = neovi
3838
channel = 1
3939

4040

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
tests_require=['mock', 'nose', 'pyserial'],
3232
extras_require={
3333
'serial': ['pyserial'],
34-
'icsneovi': ['python-ics'],
34+
'neovi': ['python-ics'],
3535
}
3636
)

0 commit comments

Comments
 (0)