2 つの 8 ビット数値を unsigned int に結合しようとしていますが、使用する型キャストに関係なく、結果は符号付き数値のままです。このコードは、フリースケール マイクロ プロセッサ MC9S08LH64 用の CodeWarrior 10.1 を使用してコンパイルされています。
私が試したことはうまくいきませんでした.2つの8ビットの数値をシフトして追加し、すべてのステップでそれらをunsigned intにキャストします。- 2 つの 8 ビット型キャストと結果の数値を unsigned int に結合する union/struct。- unsigned int ポインターを使用する (以下のコード)
unsigned int acquire_sensor_voltage_internal_adc()
{ //this is internal ADC
unsigned int result;
unsigned int* data_ptr;
char print_buffer [50];
int_convert cvt;
//internal adc collecting counts of input voltage
//______________________________________________
//writing to ADCSC1A initiate the conversion sequence
ADCSC1A= 0x09;
while(!ADCSC1A_COCOA){}
cvt.parts.p0 = ADCRHA;
cvt.parts.p1 = ADCRLA;
data_ptr = &cvt.int_number;
result = (unsigned int)*data_ptr;
sprintf(print_buffer,"here!!!>>>>>>>%d\r\n",result);
serial_sendString(print_buffer,strlen(print_buffer));
//_______________________________________________
return (unsigned int) result;
}
//definition of int_convert from.h file
typedef union{
unsigned int int_number;
struct{
unsigned char p0;
unsigned char p1;
}parts;
}int_convert;