RP1210 Classes & Functions - dfieschko/RP1210 GitHub Wiki

This page covers all of the functions and classes in RP1210.py, which can be accessed directly through the RP1210 package.

from RP1210 import RP1210Config, RP1210API, RP1210Client, ...

Functions

getAPINames()

Reads RP121032.ini in the Windows System directory, and returns a list of the API names installed in the system.

  • You can provide your own path to RP121032.ini, or let it find it on its own.
  • Returns empty list [] if RP121032.ini isn't found or couldn't be parsed.

Example code:

import RP1210
api_names = RP1210.getAPINames()
print(api_names)

Example output for the above code:

>>> ["NULN2R32", "DLAUSB32", "CMNSI632"]

translateErrorCode()

Translates an error code from an RP1210 API function into its corresponding mnemomic.

  • Matches clientID with error string in RP1210_ERRORS.
  • NO_ERRORS has been expanded to cover clientID = 0 to 127.
  • If there is no match, returns the clientID as str.

Example code:

import RP1210
# call an api function for its error code
api = RP1210.RP1210API("NULN2R32")
clientID = api.ClientConnect(1) # connect to deviceID 1
# use translateErrorCode() to translate clientID
error_msg = RP1210.translateErrorCode(clientID)
print(error_msg)

Example output for the above code:

ERR_HARDWARE_NOT_RESPONDING

sanitize_msg_param()

'Sanitizes' (converts to bytes) a message parameter. This function is automatically called to format the inputs to many RP1210 functions.
This function is meant for internal use in message/protocol files; it's only public because I didn't want to copy/paste it a bunch of times.

  • Defaults to big-endianness and whatever the size of param is.
  • The number of bytes can be set with the num_bytes param.
  • The byte order (endianness) can be set with the byteorder param.
  • Ints are parsed as they are. (255, 0xFF => b'\xFF')
  • Strings are parsed as base-10 numbers. ("255" => b'\xFF')
  • Bytes and byte strings (b"") are left mostly untouched (num_bytes and byteorder will still apply).

Classes

RP1210Config

Reads & stores Vendor API information. Child of ConfigParser. Use getAPINames() to get an RP1210 API name to feed to this class.

nexiq = RP1210Config("NULN2R32")

This class holds an instance of RP1210API for the given API name, which you can use to call RP1210 functions, e.g.:

nexiq = RP1210Config("NULN2R32")
clientID = nexiq.api.ClientConnect(args)

This class has functions for reading EVERY SINGLE data field defined in the RP1210C standard. As such, it is embarrassingly long.

Class functions

  • __str__()
    • Returns a string that you'd typically put in a vendor selection box. Follows the suggested format from the RP1210C docs.
    • Format: "api_name - adapter_description"
    • Appends " - (drivers invalid)" if drivers failed to load.
  • getAPI()
    • Returns RP1210API object that can be used to call RP1210 functions. You can also just access the api object directly.
  • isValid()
    • Returns self.api_valid, which is set to False if config file can't be parsed or doesn't include VendorInformation.
    • This is a very basic check - a return value of True doesn't absolutely guarantee that the driver config file is valid and correct!
  • getDeviceIDs()
    • Returns a list (of ints) of all of the DeviceIDs described in the .ini file for the API.
  • getDevice(deviceID)
    • Returns an RP1210Device object parsed for the specified deviceID.
  • getDevices()
    • Returns a list of RP1210Device objects - one for each device listed in the .ini file.
  • getProtocolIDs()
    • Returns a list (of ints) of all of the ProtocolIDs described in the .ini file for the API.
  • getProtocolNames()
    • Returns a list (of strings) of all the protocols described in the .ini file for the API.
  • getProtocols()
    • Returns a list of RP1210Protocol objects - one for each protocol listed in the .ini file.

Vendor information functions

These functions read specific fields from the API's config file. Unless otherwise specified, these functions will return None or empty strings/lists/etc if the field is not found.

  • getName()
    • Returns 'Name' field from VendorInformation section.
    • Will return "(Vendor Name Missing)" if the 'Name' field isn't found.
  • getDescription()
    • This is a copy of getName(), since I personally think the name section is more like a description.
  • getAddress1()
    • Returns 'Address1' field from VendorInformation section.
  • getAddress2()
    • Returns 'Address2' field from VendorInformation section.
  • getState()
    • Returns 'State' field from VendorInformation section.
  • getCountry()
    • Returns 'Country' field from VendorInformation section.
  • getPostal()
    • Returns 'Postal' field (zipcode) from VendorInformation section.
  • getTelephone()
    • Returns 'Telephone' field from VendorInformation section.
  • getFax()
    • Returns 'Fax' field from VendorInformation section.
  • getVendorURL()
    • Returns the VendorURL field from VendorInformation section.

API information functions

These functions read specific fields from the API's config file. Unless otherwise specified, these functions will return None or empty strings/lists/etc if the field is not found.

  • getVersion()
    • Returns the 'Version' field from VendorInformation section.
  • getAutoDetectCapable()
    • Returns the 'AutoDetectCapable' field from VendorInformation section (as bool).
  • getTimeStampWeight()
    • Returns the 'TimeStampWeight' field in VendorInformation section (as float).
  • getMessageString()
    • Returns the 'MessageString' field in VendorInformation section.
  • getErrorString()
    • Returns the 'ErrorString' field in VendorInformation section.
  • getRP1210Version()
    • Returns the 'RP1210' field in VendorInformation section.
  • getDebugLevel()
    • Returns the 'DebugLevel' field in VendorInformation section.
    • -1 = Debugging is not supported by this API.
    • 0 = No debugging to be accomplished.
    • 1 = Only Connect/Disconnect/Error Messages.
    • 2 = Add RP1210 SendCommand calls.
    • 3 = Add all sent Messages (with filtering).
    • 4 = Add all Received Messages (with filtering).
  • getDebugFile()
    • Returns the 'DebugFile' field in VendorInformation section.
    • This represents the absolute path to the debug/log file.
  • getDebugMode()
    • Returns the 'DebugMode' field in VendorInformation section.
    • 0 = Overwrite (completely destroying previous contents)
    • 1 = Append (write to the end of the file, keeping any previous contents)
  • getDebugFileSize()
    • Returns the 'DebugFileSize' field in VendorInformation section.
    • This represents the maximum size in kilobytes that the debug file should be.
    • If this field is missing (and debug logging is enabled), it defaults to 1024 KB (1MB).
    • Note that if DebugLevel = -1, there will be no logging even if you receive a value of 1024 from this function.
  • getNumberOfSessions()
    • Returns the 'NumberOfRTSCTSSessions' field in VendorInformation section.
    • 'NumberOfRTSCTSSessions' is an integer representing the number of concurrent RTS/CTS transport sessions that the API supports per client.
  • getCANFormatsSupported()
    • Returns the 'CANFormatsSupported' list in VendorInformation section.
    • These numbers correspond with the CAN Formats described in section 12 of the RP1210C documentation.
  • getJ1939FormatsSupported()
    • Returns the 'J1939FormatsSupported' list in VendorInformation section.
    • These numbers correspond with the J1939 Formats described in section 12 of the RP1210C documentation.
  • getCANAutoBaud()
    • Returns the CANAutoBaud field in VendorInformation as bool.
  • autoBaudEnabled()
    • Duplicate of CANAutoBaud() function.
  • getDeviceIDs()
    • Returns list of DeviceIDs described in .ini file.
  • getProtocolNames()
    • Returns a list of protocol Strings.
  • getProtocolIDs()
    • Returns list of ProtocolIDs described in .ini file.

RP1210API

Used to interact with RP1210 drivers. Once RP1210API is initialized with an API name (e.g. NULN2R32 for NexIQ USB-Link 2), the API's C functions can be accessed through the instance of RP1210API. Classes like RP1210Client contain a list of RP1210API instances that individually load API DLLs for access through Python.

Class Functions

  • getAPIName() -> str
    • Returns API name for this API (e.g. "NULN2R32").
  • getDLL() -> CDLL
    • Returns CDLL object for this RP1210 API. Will return None if loading the DLL was unsuccessful.
  • loadDLL() -> CDLL
    • Loads DLL via cdll.LoadLibrary(). This function is called in getDLL() if the DLL hasn't been loaded yet.
  • isValid()
    • Returns True if DLL loaded successfully, False if not. Will call loadDLL() if the DLL hasn't been loaded yet.
  • conformsToRP1210C()
    • Will return False if RP1210C functions failed to load.
  • setDLL(dll : CDLL)
    • Replaces the currently loaded CDLL with a new CDLL.

RP1210 Functions

ClientConnect

Attempts to connect to an RP1210 adapter by calling RP1210_ClientConnect. Returns ClientID. 0 to 127 means connection was successful; >127 means it failed. Use function translateErrorCode() or RP1210API.GetErrorMsg() to translate ClientID into an error message.

ClientID is used in other API functions to tell the drivers which client instance to interact with. RP1210Client handles this automatically, but if you're interacting with RP1210API directly you'll want to save ClientID for use in those functions.

Params:

  1. DeviceID (int) - Determines which adapter to connect to (use functions in RP1210Client to get IDs).
  2. Protocol (bytestring) - Tells the adapter which protocol, baud, and other parameters to connect with (e.g. b"J1939:Baud=500").
  3. TxBufferSize (int) - Sets the size of the transmit buffer. Defaults to 8000 bytes.
  4. RcvBufferSize (int) - Sets the size of the receive buffer. Defaults to 8000 bytes.

ClientDisconnect

Calls RP1210_ClientDisconnect to disconnect client w/ specified ClientID from adapter. Returns 0 if successful, or >127 if it failed. Use function translateErrorCode() or RP1210API.GetErrorMsg() to translate the return value to an error message.

Params:

  1. ClientID (int) - ClientID to disconnect from.

SendMessage

Calls RP1210_SendMessage to send a message to the databus your adapter is connected to. Use a Message class provided with this package (e.g. J1939Message for J1939 messages) to generate the message. Or just do it yourself, I'm not the boss of you.

Params:

  1. ClientID (int) - ClientID returned by ClientConnect.
  2. ClientMessage (bytes) - The message you want to send. Classes like J1939Message evaluate as bytes and can be used for this argument.
  3. MessageSize (int) - The number of bytes in ClientMessage. Will default to len(ClientMessage).

ReadMessage

Calls RP1210_ReadMessage to read a message from the databus. The message - plus four timestamp bytes - is placed in RxBuffer, and this function will return the number of bytes that were read (including 4 bytes for leading timestamp). If an error is encountered, the return value will instead be a negative number that can be translated to an error message via translateErrorCode() or RP1210API.GetErrorMsg().

Params:

  1. ClientID (int) - ClientID returned by ClientConnect.
  2. RxBuffer (bytes) - Buffer to write the message into.
  3. BufferSize (int) - Size of buffer. Will default to len(RxBuffer).

ReadDirect

Calls RP1210_ReadMessage to read a message from the databus, and returns the message as bytes. This is similar to RP1210API.ReadMessage, except it generates and returns its own buffer, eliminating that extra step for you, the user.

Params:

  1. ClientID (int) - ClientID returned by ClientConnect.
  2. BufferSize (int) - Size of RxBuffer. Will default to 256.

SendCommand

Calls RP1210_SendCommand. You really want to read the RP1210C documentation for this one.

Params:

  1. CommandNumber (int) - the ID of the command you want executed.
  2. ClientID (int) - ClientID returned by ClientConnect.
  3. ClientCommand (bytes) - Data to be sent along with CommandNumber.
  4. MessageSize (int) - Number of bytes in ClientCommand. Defaults to len(ClientCommand).

ReadVersion

RP1210_ReadVersion function in all its glory. Provide it with four buffers via create_string_buffer(16). This function will overwrite each buffer with whatever it reads from the DLL.

Usage of ReadVersionDirect() instead of this function is recommended.

Params:

  1. DLLMajorVersionBuffer (bytes) - initialize with create_string_buffer(16)
  2. DLLMinorVersionBuffer (bytes) - initialize with create_string_buffer(16)
  3. APIMajorVersionBuffer (bytes) - initialize with create_string_buffer(16)
  4. APIMinorVersionBuffer (bytes) - initialize with create_string_buffer(16)

ReadVersionDirect

Calls RP1210_ReadVersion and returns a tuple of two strings: (dll_version, api_version). Both strings will consist of a major and minor version, e.g. dll_version == "3.1".

Params:

  1. BufferSize (int) - Size of string buffers. Defaults to 16.

ReadDetailedVersion

Calls RP1210_ReadDetailedVersion, which is similar to RP1210_ReadVersion, but communicates with the RP1210 adapter to return the adapter's firmware version. Provide it with three buffers via create_string_buffer(17). This function will overwrite each buffer with whatever it reads from the DLL.

This is an RP1210C function and may not be supported by some adapters. In that case, this function will return error code 128 and leave the input buffers unchanged.

Params:

  1. ClientID (int) - ClientID returned by ClientConnect.
  2. APIVersionBuffer (bytes) - initialize with create_string_buffer(17)
  3. DLLVersionBuffer (bytes) - initialize with create_string_buffer(17)
  4. FWVersionBuffer (bytes) - initialize with create_string_buffer(17)

ReadDetailedVersionDirect

Similarly to ReadVersionDirect, this function generates its own buffers and returns API, DLL, and firmware versions as a tuple of three strings: (api_version, dll_version, fw_version).

Params:

  1. ClientID (int) - ClientID returned by ClientConnect.

GetErrorMsg

Calls RP1210_GetErrorMsg and returns 'a textual representation of the last error code that occurred by that client in an application.' Provide it with an error code (e.g. like the one you can get in place of ClientID), and it'll return a string describing the error. This is similar to the RP1210.translateErrorCode() function provided by this package.

If RP1210_GetErrorMsg fails, this function will automatically translate the code it returns (generally "ERR_CODE_NOT_FOUND").

Params:

  1. ErrorCode (int) - the error code you want to translate.

GetHardwareStatus

Calls RP1210_GetHardwareStatus and places the result in ClientInfoBuffer. Returns an error code. Use create_str_buffer() to create the buffer. ClientInfoBuffer size must be in the range of 16 to 64, and must be a multiple of 2.

You can also just use GetHardwareStatusDirect() and not worry about buffers.

Params:

  1. ClientID (int) - ClientID returned by ClientConnect.
  2. ClientInfoBuffer (bytes) - Buffer for hardware status.
  3. BufferSize (int) - The size of ClientInfoBuffer. Defaults to len(ClientInfoBuffer).

GetHardwareStatusDirect

Calls GetHardwareStatus and returns the result directly.

BufferSize must range between 16 and 64, and must be a multiple of 2. Leave BufferSize blank to default to 64.

Params:

  1. ClientID (int) - ClientID returned by ClientConnect.
  2. BufferSize (int) - The size of ClientInfoBuffer. Defaults to 64.

RP1210Device

RP1210Protocol

RP1210VendorList

This class serves as a backbone for RP1210Client, and isn't covered in as much detail as it should on this page.

RP1210VendorList loads and stores a list of all RP1210 adapter vendors specified in RP121032.ini (each vendor gets its own RP1210Config object).

Also points to a specific RP1210Config and a device within that RP1210Config. This feature is intended to be used with a couple of combo boxes that allow for the selection of RP1210 vendors and devices.

  • Access the RP1210Config object that is currently being pointed to with getVendor().
  • Access the RP1210API object that is currently being pointed to with with getAPI().
  • Set vendor index with setVendorIndex().
    • Set device index with setDeviceIndex(). This is NOT deviceID!
    • If you have a vendor name but not index, use getVendorIndex(api_name) to find the index.

Functions

  • populate()
    • Populates vendors from RP121032.ini. Initializes an RP1210Config object for each vendor name that is found. This function is called in init().
  • getList() -> list[RP1210Config]
    • Returns list of stored RP1210Config objects (e.g. list of vendors).
  • getVendorList() -> list[RP1210Config]
    • Copy of getList().
  • getAPI() -> RP1210API
    • Returns RP1210API object indicated by current vendor index and device index.
  • numVendors() -> int
    • Returns number of vendors stored in vendor list.
  • numDevices() -> int
    • Returns number of devices supported by current vendor.
  • setVendorIndex()
    • Set index of current vendor.
  • setVendor()
    • Sets current vendor by api_name (e.g. NULN2R32).
  • setDeviceIndex()
    • Sets index of current device.
  • setDevice()
    • Sets current device to device matching deviceID.
  • getDeviceIndex() -> int
    • Returns index of device matching deviceID. Returns 0 (start of list) if no match is found.
  • getVendor() -> RP1210Config
    • Returns RP1210Config object in vendor list at specified index.
  • getVendorIndex() -> int
    • Returns index of vendor in list that matches given api name.
  • getCurrentVendor() -> RP1210Config
    • Returns RP1210Config object pointed to by vendor_index.
  • getVendorName() -> str
    • Returns 'Name' field from currently selected vendor's VendorInformation.
  • getCurrentDevice() -> RP1210Device
    • Returns RP1210Device object pointed to by device_index.
  • getDeviceID() -> int
    • Returns DeviceID of current device.

Constants

RP1210_ERRORS (dict)

This dict contains a string for each error code documented in RP1210C.pdf, as well as a couple that are vendor-specific.

RP210_COMMANDS (dict)

This dict contains a string for each RP1210 command code.