반응형 기술자료229 VMwareTools 5.5 링크 http://bbgentoo.ilb.ru/distfiles/VMwareTools-5.5.1-19175.tar.gz 2012. 9. 28. 리눅스 네트워크 설정 안될 때 1. 리눅스에서 다음 명령을 쳐 본다. # route 2. 다음과 같이 나오면 gateway가 제대로 설정되지 않아서 이다. 3. 아래처럼 디폴트 gateway를 추가해 준다.(현재 네트워크 gateway가 192.168.10.1 일 경우) # route add default gw 192.168.10.1 4. 확인해 보면 아래와 같이 추가되어 있다. 2012. 9. 28. RFID ISO 15693 16Bit CRC unsigned short Emb_Crc(void *arg) { unsigned short i; unsigned short j; unsigned short cnt; unsigned short crc=0xFFFF; unsigned short temp; unsigned char *buf = arg; cnt = (*buf) - 2; for(i=0 ; i 1)^0x8408; } else { crc=(crc>>1); } } } return crc; } 2012. 9. 27. RFID ISO 15963 Spec 모던 리더기 설정 속도 : 38400패리티 : 짝수 모던 리더기 테스트(COM1) 샘플 코드 #include #pragma pack(push, 1) typedef struct COMMON COMMON; struct COMMON { unsigned char ucLen; unsigned char ucComAdr; unsigned char ucCtl; }; #pragma pack(pop) unsigned short MecCRC(void *arg) { unsigned short i; unsigned short j; unsigned short cnt; unsigned short crc=0xFFFF; unsigned short temp; unsigned char *buf = arg; cnt = (*buf) - 2;.. 2012. 9. 27. 리눅스 커널 다운 로드 주소 책에 있는 링크는 현재 파일이 존재 하지 않으니 아래 경로를 참조하셈. http://www.linuxgrill.com/anonymous/kernel/v2.6/linux-2.6.14.6.tar.bz2 http://www.linuxgrill.com/anonymous/kernel/v2.4/linux-2.4.32.tar.bz2 2012. 9. 26. 리눅스 네트워크 수동 설정 ( 데비안 리눅스 등... ) 1============ # ifdown eth0 ============1 2============( [000]자리에 자신 IP 입력) # vi /etc/network/interfaces --------------------------------------------------- auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.10.[000] netmask 255.255.255.0 network 192.168.10.0 broadcast 192.168.10.255 gateway 192.168.10.1 dns-nameservers 210.94.0.7 210.94.0.73 ------------------------.. 2012. 9. 26. RS232 프로그래밍 2012. 9. 21. t1.c 컴파일 방법 ======================================================t1.c 컴파일 cl /c /GS- t1.c 혹은 cl /Fot1.obj /GS- /c t1.c======================================================t1.c 링킹 link /subsystem:console /entry:init /nodefaultlib /out:t1.exe /base:0x베이스주소 init.obj monitor.obj t1.obj ====================================================== 2012. 9. 12. MASM 프로젝트 - LOAD 함수 참고 자료 2012. 9. 12. 이전 1 ··· 14 15 16 17 18 19 20 ··· 26 다음 728x90 반응형