C언어,ARM

uVision - 한글 깨질때 설정 방법

안녕1999 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;