Coronis SDK Wiki
Set of module for data processing of wireless device
Status: Abandoned
Brought to you by:
tchomaud
Before using a SerialDriver implementation, an instance of the implementation must be created:
C source API extract
/**
* Create a new serial driver instance
* @return a pointer to created serial driver.<code>NULL</code> if driver failed to be created.
*/
WAVENIS_API void* driver_create();
/**
* Destroy the serial driver instance. It will automatically close the current connection
* @param driver The SerialDriver instance
* @return <code>0</code> if succeed, a positive number otherwise
*/
WAVENIS_API int driver_destroy( const void* driver );