PCANBasicSetValue(UInt16, TPCANParameter, String, UInt32) Method

Configures a feature of a PCAN Channel.

Definition

Namespace: Peak.Can.Basic.BackwardCompatibility
Assembly: PCANBasic.NET (in PCANBasic.NET.dll) Version: 4.9.0
C#
public static TPCANStatus SetValue(
	ushort Channel,
	TPCANParameter Parameter,
	string StringBuffer,
	uint BufferLength
)

Parameters

Channel  UInt16
The handle of a PCAN Channel (see PCAN Handle Definitions).
Parameter  TPCANParameter
The code of the value to be set.
StringBuffer  String
The buffer containing the string value to be set.
BufferLength  UInt32
The length in bytes of the given buffer.

Return Value

TPCANStatus

The return value is a TPCANStatus value. PCAN_ERROR_OK is returned on success. The typical errors in case of failure are:

  • PCAN_ERROR_INITIALIZE: Indicates that the given PCAN channel was not found in the list of initialized channels of the calling application.
  • PCAN_ERROR_ILLPARAMVAL: Indicates that one or more parameters passed to the method are invalid.
  • PCAN_ERROR_ILLHW: Indicates that the given PCAN Channel is not available.
  • PCAN_ERROR_ILLHANDLE: Indicates that the given PCAN Channel is not valid.
  • PCAN_ERROR_ILLPARAMTYPE: Indicates that the requested information is not available for the given PCAN Channel. Check the value of Parameter; some values are not available for all PCAN-Channels or cannot be read.
  • PCAN_ERROR_ILLOPERATION: An underlying process that is generated by a call to this method with the current parameters, is temporarily not allowed. The configuration in relation to the used Parameter must be checked.

Remarks

Use the method SetValue to change the behavior of a PCAN Channel or to set environment values like writing custom messages into the API log file. Take in account that not all parameters are supported for all PCAN Channels. The access's type of the parameters can also be different.

For more information about the possible values that can be used for parameter configuration, see Parameter Value Definitions

  Important

For more information about each available TPCANParameter, please refer to the companion PDF documentation PCAN-Parameter_Documentation.pdf.

Example

The following example shows the use of SetValue(UInt16, TPCANParameter, String, UInt32) method on the channel PCAN_NONEBUS to set (and activate) the path for the log file of a debug session. In case of failure, the returned code will be translated to a text (according with the operating system language) in English, German, Italian, French or Spanish, and it will be shown to the user.

C#
TPCANStatus result;
System.Text.StringBuilder strMsg;
string strBuffer;

strMsg = new System.Text.StringBuilder(256);

// The path for the Log file is set.
// Note that this parameter is set using the
// default Channel value (PCANBasic.PCAN_NONEBUS)
//
strBuffer = "C:\\Users\\Admin\\Desktop";
result = PCANBasic.SetValue(PCANBasic.PCAN_NONEBUS, TPCANParameter.PCAN_LOG_LOCATION, strBuffer, (UInt32)strBuffer.Length);
if (result != TPCANStatus.PCAN_ERROR_OK)
{
    // An error occurred, get a text describing the error and show it
    //
    PCANBasic.GetErrorText(result, 0, strMsg);
    Console.WriteLine(strMsg.ToString());
}
else
    Console.WriteLine("Log path was successfully set");

See Also