DGILib is a Dynamic-Link Library (DLL) to help software applications communicate with Data Gateway
Interface (DGI) devices. See the Data Gateway Interface user guide for further details. DGILib handles
the low-level USB communication and adds a level of buffering for minimizing the chance of overflows.
The library helps parse data streams of high complexity. The timestamp interface is parsed and split into
separate buffers for each data source. The power interface is optionally parsed and calibrated using an
auxiliary API.
Atmel DGILib [USER GUIDE]
Atmel-42771A-DGILib_User Guide-09/2016
3
2. API
The API functions are separated into four groups:
DiscoveryUsed to discover available devices and get information about them.
HousekeepingProvides version information, connection, and session control.
Interface CommunicationHandles communication with the various interfaces of DGI.
AuxiliaryExtended functionality with interface-specifc usage.
2.1. Discovery
2.1.1. initialize_status_change_notification
Initializes the system necessary for using the status change notification callback mechanisms. A handle
will be created to keep track of the registered callbacks. This function must always be called before
registering and unregistering notification callbacks.
Registers provided function pointer with the device status change mechanism. Whenever there is a
change (device connected or disconnected) the callback will be executed. Note that it is not allowed to
connect to a device in the context of the callback function. The callback function has the following
definition: typedef void (*DeviceStatusChangedCallBack)(char* device_name, char* device_serial, BOOL
connected)
deviceStatusChangedCallBackFunction pointer that will be removed
2.1.5. discover
Triggers a scan to find available devices in the system. The result will be immediately available through
the get_device_count, get_device_name and get_device_serial functions.
Function definition
void discover(void)
Parameters
2.1.6. get_device_count
Returns the number of devices detected.
Function definition
int get_device_count(void)
Parameters
2.1.7. get_device_name
Gets the name of a detected device.
A non-zero return value indicates an error.
Function definition
int get_device_name(int index, char* name)
Parameters
index Index of device ranges from 0 to get_device_count - 1
name Pointer to buffer where name of device can be stored. 100 or more bytes must be allocated
2.1.8. get_device_serial
Gets the serial number of a detected device.
A non-zero return value indicates an error.
Function definition
int get_device_serial(int index, char* sn)
Parameters
index Index of device ranges from 0 to get_device_count - 1
Atmel DGILib [USER GUIDE]
Atmel-42771A-DGILib_User Guide-09/2016
5
snPointer to buffer where the serial number of the device can be stored. 100 or more bytes must be
allocated. This is used when connecting to a device.
2.1.9. is_msd_mode
EDBG devices can be set to a mass storage mode where the DGI is unavailable. In such cases the
device is still detected by DGILib, but it won't be possible to directly connect to it. This command is used
to check if the device is in such a mode.
A non-zero return value indicates that the mode must be changed by set_mode before proceeding.
Function definition
int is_msd_mode(char* sn)
Parameters
snSerial number of the device to check
2.1.10. set_mode
This function is used to temporarily set the EDBG to a specified mode.
A non-zero return value indicates an error.
Function definition
int set_mode(char* sn, int nmbed)
Parameters
snSerial number of the device to set
nmbed0 - Set to mbed mode. 1 - Set to DGI mode.
2.2. Housekeeping
2.2.1. connect
Opens a connection to the specified device. This function must be called prior to any function requiring
the connection handle.
A non-zero return value indicates an error.
Function definition
int connect(char* sn, uint32_t* dgi_hndl_p)
Parameters
snBuffer holding the serial number of the device to open a connection to
dgi_hndl_pPointer to a variable that will hold the handle of the connection
2.2.2. disconnect
Closes the specified connection.
A non-zero return value indicates an error.
Atmel DGILib [USER GUIDE]
Atmel-42771A-DGILib_User Guide-09/2016
6
Loading...
+ 11 hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.