전체 글 (245) 썸네일형 리스트형 Windows에서 파티션 관리 유틸리티 http://www.partition-tool.com/download.htm Home Edition은 무료다. scapy on windows http://www.secdev.org/projects/scapy/doc/installation.html#windows Rhapsody :: Timer 이벤트 사용시 유의할 사항 클래스를 설계할 때, 1초 마다 doSomething() 을 호출하면서, 동시에 외부에서 들어오는 evExternalEvent를 처리하게 하도록 아래와 같이 State Chart Diagram을 설계했었다. 결과적으로는 잘못된 설계이다. evExternalEvent가 1초 보다 빠르게 들어온다면 위와 같은 상황에서는 절대 타이머 이벤트가 발생하지 않을 것이다. 이유는 생성된 코드를 보면 확인할 수 있다. doSomethingElse()가 호출됨과 동시에 타이머를 다시 세팅하고있다. IOxfReactive::TakeEventStatus SomeClass::rootState_processEvent() { IOxfReactive::TakeEventStatus res = eventNotConsumed; if(r.. Python으로 급하게 만들어 사용한 UDP Server 예제 프로젝트 진행간에 테스트 용도로 급하게 만들어 보았다. 역시 이럴때는 Python 만한게 없다. :) import socket if __name__ == '__main__': rcv_sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) try: rcv_sock.bind(("10.100.10.90", 8889)) except: print "Error at Binding" while 1: print "Listening..." data, addr = rcv_sock.recvfrom(65535) print "Got %s" % data Python을 이용한 Socket 프로그래밍에 관련된 자료는 아래의 문서를 참고한다. http://docs.python.org/lib.. Why is my VxWorks application unable to discover other RTI Data Distribution Service applications after a restart? 결론 : GUID를 재시작할때마다 Unique하게 만들자!! Relevant versions: RTI Data Distribution Service 4.x For dynamic discovery to work properly, RTI Data Distribution Service relies on a "globally unique identifier" (GUID) that uniquely identifies each instance of a participant in the network. By default, RTI Data Distribution Service will automatically choose values for the host ID and app ID that will generate .. Windows에서 시간측정 관련 자료 링크 http://andromedarabbit.net/wp/timimg/ RTI DDS NIC 지정하기 특정 IP를 가지는 NIC에서 RTI DDS를 사용하기 위한 방법이다. Method 2번으로 해결함. [Applies to RTI Data Distribution Service 4.x] On a machine with multiple NICs, you can restrict RTI Data Distribution Service traffic to a subset of the available network interfaces (NICs). For example, this would allow you to segregate DDS traffic from other application-specific data. Selecting specific NICs involves configuring a transp.. PPC9A/SBC310에서 ethernet 카드의 mac address 가져오기 sysLib.c에 정의되어 있는 rsMacStringGet 함수나 mac 주소를 가지고 있는 sysMacAdrs 변수에 접근하면 된다. uiPortNum는 0 / 1 번 이더넷 인터페이스 카드를 구분할 때 사용된다. 예제 코드 #include "vxWorks.h" #include extern "C" STATUS rsMacStringGet( char* pcPortName /* "motetsec", etc */ , UINT uiPortNum /* e.g. 0, 1 etc */ , char* pcMacString /* where to put the return ascii string in the format "nn-nn-nn-nn-nn-nn" (i.e. at least 18 chars reqd) */ ); e.. 이전 1 ··· 14 15 16 17 18 19 20 ··· 31 다음