uldaq/examples/DIn.c

150 lines
3.9 KiB
C
Raw Permalink Normal View History

2018-05-01 12:02:27 -04:00
/*
UL call demonstrated: ulDIn()
Purpose: Reads the value of the first supported
digital port
Demonstration: Displays the value of the first digital
port
Steps:
1. Call ulGetDaqDeviceInventory() to get the list of available DAQ devices
2. Call ulCreateDaqDevice() to to get a handle for the first DAQ device
3. Verify the DAQ device has an digital input subsystem
4. Call ulConnectDaqDevice() to establish a UL connection to the DAQ device
5. Get the first supported digital port
7. Call ulDConfigPort to configure the port for input
8. Call ulDIn() to read a value from the digital port
9. Display the data for the port
10. Call ulDisconnectDaqDevice() and ulReleaseDaqDevice() before exiting the process.
*/
#include <stdio.h>
#include <stdlib.h>
#include "uldaq.h"
#include "utility.h"
#define MAX_DEV_COUNT 100
#define MAX_STR_LENGTH 64
int main(void)
{
int descriptorIndex = 0;
DaqDeviceDescriptor devDescriptors[MAX_DEV_COUNT];
DaqDeviceInterface interfaceType = ANY_IFC;
DaqDeviceHandle daqDeviceHandle = 0;
unsigned int numDevs = MAX_DEV_COUNT;
int hasDIO = 0;
2018-12-03 13:40:46 -05:00
DigitalPortType portType;
DigitalPortIoType portIoType;
2018-05-01 12:02:27 -04:00
char portTypeStr[MAX_STR_LENGTH];
2018-12-03 13:40:46 -05:00
char portIoTypeStr[MAX_STR_LENGTH];
2018-05-01 12:02:27 -04:00
unsigned long long data = 0;
UlError err = ERR_NO_ERROR;
int i = 0;
int __attribute__((unused)) ret;
char c;
// Get descriptors for all of the available DAQ devices
err = ulGetDaqDeviceInventory(interfaceType, devDescriptors, &numDevs);
if (err != ERR_NO_ERROR)
goto end;
// verify at least one DAQ device is detected
if (numDevs == 0)
{
printf("No DAQ device is detected\n");
goto end;
}
printf("Found %d DAQ device(s)\n", numDevs);
for (i = 0; i < (int) numDevs; i++)
printf(" %s: (%s)\n", devDescriptors[i].productName, devDescriptors[i].uniqueId);
// get a handle to the DAQ device associated with the first descriptor
daqDeviceHandle = ulCreateDaqDevice(devDescriptors[descriptorIndex]);
if (daqDeviceHandle == 0)
{
printf ("\nUnable to create a handle to the specified DAQ device\n");
goto end;
}
// verify the device supports digital input
err = getDevInfoHasDio(daqDeviceHandle, &hasDIO);
if (!hasDIO)
{
printf("\nThe specified DAQ device does not support digital I/O\n");
goto end;
}
printf("\nConnecting to device %s - please wait ...\n", devDescriptors[descriptorIndex].devString);
// establish a connection to the DAQ device
err = ulConnectDaqDevice(daqDeviceHandle);
if (err != ERR_NO_ERROR)
goto end;
2018-12-03 13:40:46 -05:00
// get the first port type (AUXPORT0, FIRSTPORTA, ...)
2018-05-01 12:02:27 -04:00
err = getDioInfoFirstSupportedPortType(daqDeviceHandle, &portType, portTypeStr);
2018-12-03 13:40:46 -05:00
// get the I/O type for the fisrt port
err = getDioInfoFirstSupportedPortIoType(daqDeviceHandle, &portIoType, portIoTypeStr);
if(portIoType == DPIOT_IO || portIoType == DPIOT_BITIO)
{
// configure the first port for input
err = ulDConfigPort(daqDeviceHandle, portType, DD_INPUT);
}
2018-05-01 12:02:27 -04:00
printf("\n%s ready\n", devDescriptors[descriptorIndex].devString);
printf(" Function demonstrated: ulDIn()\n");
printf(" Port: %s\n", portTypeStr);
2018-12-03 13:40:46 -05:00
printf(" Port I/O type: %s\n", portIoTypeStr);
2018-05-01 12:02:27 -04:00
printf("\nHit ENTER to continue\n");
ret = scanf("%c", &c);
ret = system("clear");
while(err == ERR_NO_ERROR && !enter_press())
{
// read the port
err = ulDIn(daqDeviceHandle, portType, &data);
resetCursor();
printf("Hit 'Enter' to terminate the process\n\n");
clearEOL();
printf("Data: %lld (0x%llx)\n", data, data);
usleep(100000);
}
// disconnect from the DAQ device
ulDisconnectDaqDevice(daqDeviceHandle);
end:
// release the handle to the DAQ device
ulReleaseDaqDevice(daqDeviceHandle);
if(err != ERR_NO_ERROR)
{
char errMsg[ERR_MSG_LEN];
ulGetErrMsg(err, errMsg);
printf("Error Code: %d \n", err);
printf("Error Message: %s \n", errMsg);
}
return 0;
}