xl_channel_config
-
5. 채널 정보 출력C#/XL_Driver 2020. 2. 5. 16:55
앞서 보여드린 4번 게시글의 예제에서 채널의 개수를 확인하는 코드를 보았습니다. 이번 게시글에서는 7개 채널들 각각의 정보를 출력하는 방법을 알아보겠습니다. 우선 driverConfig 클래스의 형태를 알아야 합니다. 구성요소는 아래와 같습니다. (참고) class XLClass 내부에 선언되었습니다 public class xl_driver_config 구조 public class xl_driver_config { public uint dllVersion; public uint channelCount; public uint[] reserved; public xl_channel_config[] channel; public xl_driver_config(); } 위 클래스에서 xl_channel_config..