Code9 UniFlash 로 (CCS 없이) FW Download 하기(Driver 설치) : TI TMS320 입문 TI TMS320 입문 연재 입니다. >. CCS, C2000Ware, sprc191 (sprc097) 설치, compile>. XDS100, XDS200 로 CCS Debug 하기 >. FLASH 에서 실행, DELAY_US 문제 >. UniFlash 로 (CCS 없이) FW Download 하기(Driver 설치) == 본글 >. C2Prog 로 (CCS 없이) FW Download 하기 >. C2000Ware Sample code 를 다른곳으로 가져 가기 >. CCS v20 Project 만들기 >. CCS, 다른 ( 옛날 ) Compiler (CGT) 버전 설치 >. TMS320 F28069 CCS SCI(UART) source.. 2025. 3. 12. VS Code 로 nuvoton 디버그 하기 본글은 Visual Source Code ( VsCode ) 로 Nuvoton 소스를 build ( compile ), debug 하는 글의 한 부분 입니다. 1. Nuvoton 제공 Sample Code를 Keil 에서 Compile 하기 ( https://bahk33.tistory.com/181 )2. gcc 로 nuvoton source 직접 build(compile) 하기 ( https://bahk33.tistory.com/183 ) 3. Visual Source VS Code 로 nuvoton Build(Compile) 하기 ( https://bahk33.tistory.com/185 ) 4. VS Code 로 nuvoton 디버그 하기 .. 2025. 1. 21. Visual Source VS Code 로 nuvoton Build(Compile) 하기 본글은 Visual Source Code ( VsCode ) 로 Nuvoton 소스를 build ( compile ), debug 하는 글의 한 부분 입니다. 1. Nuvoton 제공 Sample Code를 Keil 에서 Compile 하기 ( https://bahk33.tistory.com/181 )2. gcc 로 nuvoton source 직접 build(compile) 하기 ( https://bahk33.tistory.com/183 ) 3. Visual Source VS Code 로 nuvoton Build(Compile) 하기 ( https://bahk33.tistory.com/185 ) : 본글4. VS Code 로 nuvoton 디버그 하기 .. 2025. 1. 21. gcc 로 nuvoton source 직접 build(compile) 하기 본글은 Visual Source Code ( VsCode ) 로 Nuvoton 소스를 build ( compile ), debug 하는 글의 한 부분 입니다. 1. Nuvoton 제공 Sample Code를 Keil 에서 Compile 하기 ( https://bahk33.tistory.com/181 )2. gcc 로 nuvoton source 직접 build(compile) 하기 ( https://bahk33.tistory.com/183 ) : 본글 3. Visual Source VS Code 로 nuvoton Build(Compile) 하기 ( https://bahk33.tistory.com/185 ) 4. VS Code 로 nuvoton 디버그 하기 .. 2025. 1. 20. mfc, List Control Cell값 수정 edit, 변경 하기 - sample source win 11, visual studio 2010 에서 했읍니다. mfc 에서 제공 되는 List control 은 수정 이 안된다.지금 소개 하는 방법은 편법 이다.List control 의 한 Cell 을 선택 하면 Edit control 을 선택하고, 그 값을 수정 하게 하여 다시 list 에 저장하는 방법 이다.구차 하게,, 다 만들면 이용 방법은list cell DOUBLE CLICK -> EDIT -> [Enter]또는 list cell one CLICK -> [F2] -> EDIT -> [Enter]이다.즉 둘다 되는데, 사실 더블클릭만 쓰는게 편하니 이거만 해도 된다. 실행 창 입니다. 어째든 간단히 한다고 하는데, 나름 동작은 그럴싸 합니다. 순서.1. list 와 edit 를 만든.. 2024. 11. 15. [MFC] unicode 유니코드 멀티바이트 UTF-8 인코딩 변환 모음(퍼옴) 여러 곳에서 퍼왔읍니다.제가 모아 놓고 보기 위해... CString -> char *// 이거 잘됨void CStr2Char(CString cS, char *t){ int n; CStringA t2(cS); const char * p2=t2; n = cS.GetLength(); // 한글이 들어가면, 이거와 n = t2.GetLength(); // 이게 다르다. 한글 개수 만큼 늘어 난다. strcpy_s 에서 이거 써야 함.// CString tS; AfxMessageBox(cS); tS.Format(_T("%d"), cS.GetLength() ); AfxMessageBox(tS);// tS.Format(_T("%d"), *(p2+cS.GetLength()) ); AfxMessageBox(tS).. 2023. 10. 25. 이전 1 2 다음