typedef struct { VM_DCL_I2C_TRANSACTION_MODE transaction_mode; VMUINT32 fast_mode_speed; VMUINT32 high_mode_speed; } vm_dcl_i2c_control_set_transaction_speed_t;
typedef struct { VM_DCL_I2C_TRANSACTION_MODE transaction_mode; VMUINT32 fast_mode_speed; VMUINT32 high_mode_speed; } vm_dcl_i2c_control_set_transaction_speed_t;
vm_dcl_i2c_control_set_transaction_speed_t indicates I2C_CMD_SET_TRANSACTION_SPEED command
VM_DCL_HANDLE i2c_handle; vm_dcl_i2c_control_config_t conf_data; vm_i2c_ctrl_set_transaction_speed_t speed; i2c_handle = vm_dcl_open(VM_DCL_I2C,0); if(VM_DCL_HANDLE_INVALID==i2c_handle) return; conf_data.reserved_0 = 0; conf_data.transaction_mode = VM_DCL_I2C_TRANSACTION_FAST_MODE; conf_data.get_handle_wait = 0; conf_data.reserved_1 = 0; conf_data.delay_length = 0; conf_data.slave_address = 0x98; conf_data.fast_mode_speed = 400; conf_data.high_mode_speed = 0; vm_dcl_control(i2c_handle,VM_DCL_I2C_CMD_CONFIG,(void *)&conf_data); speed.transaction_mode = VM_DCL_I2C_TRANSACTION_HIGH_SPEED_MODE; speed.fast_mode_speed = 800; speed.high_mode_speed = 1; vm_dcl_control(i2c_handle,I2C_CMD_SET_TRANSACTION_SPEED,(void *)&speed); //To do something with the handle.
vmdcl_i2c.h
|
Members |
Description |
|
VM_DCL_I2C_TRANSACTION_MODE transaction_mode; |
The transaction mode. |
|
VMUINT32 fast_mode_speed; |
The fast mode speed. |
|
VMUINT32 high_mode_speed; |
The high speed mode. |
Doc-O-Matic. In order to make this message disappear you need to register this software. If you have problems registering this software please contact us at
support@toolsfactory.com.