1. i2cWrite
개체브라우저
public USB_Adapter_Driver.USB_Adapter.Status i2cWrite(System.Byte devAddr, System.Byte command, System.Int32 dataLen, System.Byte[] data)
실제 사용함수(Auto Compliation)
USB_Adapter_Driver::USB_Adapter::Status USB_Adapter_Driver::USB_Adapter::i2cWrite(unsigned char devAddr, unsigned char command, int dataLen, cli::array<unsigned char>^ data)
==> 왜 다르게 나오지?
example)
array<unsigned char,1>^MyArray3 = gcnew array<unsigned char,1>(100);
MyArray3[0] = 10;
MyArray3[1] = 11;
MY_USB.i2cWrite( Convert::ToByte( nUD_DeviceAddress->Text ), Convert::ToByte( nUD_StartRegisterAddress -> Text ), 2 , MyArray3 );
FAR)
array<unsigned char^,1>^MyArray3 = gcnew array<unsigned^ char,1>(100);
MY_USB.i2cWrite( Convert::ToByte( nUD_DeviceAddress->Text ), Convert::ToByte( nUD_StartRegisterAddress -> Text ), 2 , MyArray3 );
==> 요렇게 했더니 4번째 인수가 다르다고 에러 침. Type 선언 부분의 ^ 을 놓쳤음.
'Programming > C/C++/C#' 카테고리의 다른 글
[Visual Studio] Editing시 멈춤 현상 - devenv cpu usage 100% (0) | 2011.07.25 |
---|---|
[Visual Studio] Main Form에서 단축키 만들기 (0) | 2011.06.01 |
[Visual Studio] unsigned char 에 Data를 넣을때 Byte Type로 바꿔서 넣자 (0) | 2011.05.22 |
[Visual Studio] TextBox String Read & Write (0) | 2011.05.22 |
[VC2010 Express] RC1015: cannot open include file 'afxres.h' (0) | 2010.07.24 |