pcan_pci
Posted: Thu 31. Oct 2013, 14:19
Hello
I jost got my PCAN PCI card 4 channel (IPEH-003040). I have a problem with CanApi2.
I'm calling CAN_SetDeviceName('pcan_pci') with no error but when I go throught enumerating the hardware I get no hardware. Same routine called with CAN_SetDeviceName('pcan_usb') enumerate succesfully.
I'm using Delphi XE4 with Windows7 64bit.
Attached a screenshot of how CANNetConfign and CAn Hardware Control Pannel Applet appears.
I jost got my PCAN PCI card 4 channel (IPEH-003040). I have a problem with CanApi2.
I'm calling CAN_SetDeviceName('pcan_pci') with no error but when I go throught enumerating the hardware I get no hardware. Same routine called with CAN_SetDeviceName('pcan_usb') enumerate succesfully.
I'm using Delphi XE4 with Windows7 64bit.
Code: Select all
Ret := CAN_SetDeviceName('pcan_pci');
if Ret<>CAN_ERR_OK then exit;
for HwIdx := 1 to MAX_HCANHW do
begin
NodeInfo.NodeType := NodeDevice;
Ret := CAN_GetHwParam(HwIdx, CAN_PARAM_NAME, @HwName, MAX_DRIVERNAMELEN);