FX3Connection Constructor |
Class Constructor. Loads SPI settings and default values for the interface, and starts a background thread to manage programming newly
connected boards with the ADI bootloader.
Namespace:
FX3Api
Assembly:
FX3Api (in FX3Api.dll) Version: 2.9.4.0 (2.9.4)
Syntaxpublic FX3Connection(
string FX3FirmwarePath,
string FX3BootloaderPath,
string FX3ProgrammerPath,
DeviceType SensorType = DeviceType.IMU
)
Public Sub New (
FX3FirmwarePath As String,
FX3BootloaderPath As String,
FX3ProgrammerPath As String,
Optional SensorType As DeviceType = DeviceType.IMU
)
public:
FX3Connection(
String^ FX3FirmwarePath,
String^ FX3BootloaderPath,
String^ FX3ProgrammerPath,
DeviceType SensorType = DeviceType::IMU
)
new :
FX3FirmwarePath : string *
FX3BootloaderPath : string *
FX3ProgrammerPath : string *
?SensorType : DeviceType
(* Defaults:
let _SensorType = defaultArg SensorType DeviceType.IMU
*)
-> FX3Connection
Parameters
- FX3FirmwarePath
- Type: SystemString
The path to the FX3 application firmware image file. - FX3BootloaderPath
- Type: SystemString
The path to the ADI FX3 bootloader image file. - FX3ProgrammerPath
- Type: SystemString
The path to the flash programmer application image file. - SensorType (Optional)
- Type: FX3ApiDeviceType
The sensor type. Valid inputs are IMU and ADcmXL. Default is IMU.
See Also