uVision - 한글 깨질때 설정 방법
C언어,ARM / 2020. 6. 6. 22:56
Menu-Edit-Configuration-"Korean EUC-KR" 한글설정 warning: #188-D: enumerated type mixed with another type typedef enum{ eTYPE1, eTYPE2, eTYPE3 }my_enum_type; my_enum_type a; byte b; b=0; a=b;//warning: #188-D: enumerated type mixed with another type //수정한 코드(형변환) a=(my_enum_type)b;
'C언어,ARM' 카테고리의 다른 글
ATtiny-다운로드 (0) | 2020.06.06 |
---|---|
AVR Studio - Backend agent is not running (0) | 2020.06.06 |
AtmelStudio-AVR Studio Backend agent is not running (0) | 2020.06.06 |
AtmelStudio-디버깅 에러 메세지 - 시뮬레이션 (0) | 2020.06.06 |
AVR Studio - ATXMega 펌웨어 다운로드 (0) | 2020.05.30 |