• slider image 442
  • slider image 483
  • slider image 484
  • slider image 485
  • slider image 486
  • slider image 487
:::


Browsing this Thread:   1 Anonymous Users






Re: 請問hi-tech c,兩個int 相乘為32bit 的正確語法
#2
管理員
管理員


查看用戶資訊
你好,

16 * 16 的結果 , 若大於 16 bit 的可容納範圍 , 可以用強迫型別轉換將一方轉成 long 型別後再做運算即可 :

long_var =(long) int_var1 * int_var2 ;

記住要將 (long) 放在某個乘數之前喔 , 以下是錯誤的 :
如果這樣寫會被先切掉 ! 切掉後轉成 long 就沒用了 !!

long_var = (long) ( int_var1 * int_var2 ) ;


若要 16 x 16 後取 16 bit 的 MSB , 以下為正確做法 . 結果可以用 MPLAB 的 Simulator + View->Watch 來驗證 :)

unsigned short int    kp ;
unsigned int        vo_err ;
unsigned int        vo_out_err ;

void main(void)
{    

    
kp 32700 ;
    
vo_err 128 ;
    
vo_out_err = ((long)kp vo_err) >> 16 ;

    while (
1) ;

        
}


祝你成功 :)

發表於: 2005/5/8 23:57
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


請問hi-tech c,兩個int 相乘為32bit 的正確語法
#1
新會員
新會員


查看用戶資訊
 unsigned short int kp;
 signed int Vo_err;
 long kp_Vo_err;
 main{
kp_Vo_err = kp*Vo_err;
}
請問這樣寫不知那裡錯.
and
若要將 kp_Vo_err轉成16bit要如何寫ㄋ
C=long(kp*Vo_err)>>16
請教各位先進ㄌ!

發表於: 2005/5/6 17:48
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部







You can view topic.
不可以 發起新主題
You cannot reply to posts.
You cannot edit your posts.
You cannot delete your posts.
You cannot add new polls.
You cannot vote in polls.
You cannot attach files to posts.
You cannot post without approval.
You cannot use topic type.
You cannot use HTML syntax.
You cannot use signature.
You cannot create PDF files.
You cannot get print page.

[進階搜尋]


:::

Microchip連結

https://www.facebook.com/microchiptechnologytaiwan/
http://www.microchip.com.tw/modules/tad_uploader/index.php?of_cat_sn=13
https://mu.microchip.com/page/tmu
http://elearning.microchip.com.tw/modules/tad_link/index.php?cate_sn=1
https://page.microchip.com/APAC-PrefCenters-TW.html
http://www.microchip.com/
http://www.microchip.com/treelink
http://www.microchipdirect.com/
http://www.microchip.com.cn/newcommunity/index.php?m=Video&a=index&id=103
http://www.microchip.com.tw/modules/tad_uploader/index.php?of_cat_sn=2
http://www.microchip.com.tw/Data_CD/eLearning/index.html
http://www.microchip.com.tw/RTC/RTC_DVD/
https://www.microchip.com/development-tools/
https://www.youtube.com/user/MicrochipTechnology
[ more... ]

教育訓練中心

!開發工具購買
辦法說明 [業界客戶] [教育單位]
----------------------------------
!校園樣品申請
辦法說明 [教師資格] [學生資格]
----------------------------------