최근 포스트

WII

최대 1 분 소요

우선 USB loader에 대한 정보들을 수집중이다.. http://club.clubnex.co.kr/allall/ 일단 기분깔끔하게 초기화기켜 시켰구요( 초기화시키니까 버전 3.3가 되더군요) 3.3k 버전은 40번 자료를 그냥 실행시키면 홈브류 들어갈때 튕기더라구요~ 유...

Serial Communication in Windows

18 분 소요

**퍼옴. Serial Communication in Windows** Download source files - 55 Kb Introduction This article is meant to give you a jump start on doing serial com...

OutputDebugString을 Printf처럼 사용하기~~

최대 1 분 소요

아.. 아래껄루 확인할라면.. Dbgview.exe를 사용하면 되용.. 인터넷에 많네용 ^^; Log_sulac(“sdfsdfasf %d”,parm1); 이 가능하게 하려면 아래와 같이 수정하면 됨 (이건 VC6.0에서 사용하는 방법임) void Log_Sulac(const c...

MFC DEBUG [퍼옴]

1 분 소요

출처 : http://simple21.egloos.com/3489675 (이글루스 블로그, 서버 종료) 1.OutputDebugString() 이 함수는 디버깅 중에 Debug 창에 문자열을 표시하는 함수이다. 이후에 설명할 TRACE 유사(TRACE는 Debug모드에서만 동작,...

binary에서 buffer에 쓰기.

최대 1 분 소요

char* mem; int max = 123123; int block = 64; int size; for (a = 0; a < max; a += block) {  size = a + block >= max ? max - a : block;  memcpy(buffer, &...