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


Browsing this Thread:   1 Anonymous Users




(1) 2 »


Re: 請問使用pic12f675的clock可用內部4M嗎?
#11
新會員
新會員


查看用戶資訊
這台的價錢還在小弟可以接受的範圍,
謝謝!!各位前輩這麼細心的教導。真的是超感恩的!!!謝謝!

發表於: 2009/12/16 15:09
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#10
版主
版主


查看用戶資訊
試試看這台,PC-Base 的可以接投影機又可以印出來或存起來。公司裡有人用了他以後就把太x 的數位示波器打入冷宮了。

http://www.acute.com.tw/product/product_DSO1000.php

發表於: 2009/12/16 12:28
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#9
新會員
新會員


查看用戶資訊
不好意思在請教一個問題:
那頻率在哪一段?規格不是都標100mHZ還有功能一堆,一台示波器又不少錢,怕買錯就…能在說明詳細一點嗎?小弟是個剛剛入門的新手。感恩!!

發表於: 2009/12/16 12:06
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#8
版主
版主


查看用戶資訊
示波器對電子設計工程師是不可缺的工具,新的有點貴。初學者建議到二手儀器市場找一下,很多高檔的示波器都只要萬把塊出頭而已。

發表於: 2009/12/15 9:09
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#7
資深會員
資深會員


查看用戶資訊
適不適用,要看用法~

一般看通訊波形,4 channel 大概都夠用

要看 real time 的作動,4 channel 就累了點(還是可以做)


一般示波器,公司大概就是 太克和安捷倫,太克比較常見

以前我常用 tds3034 大概260k

現在用的 mso3034 大概420k

如果你只有一兩萬,網拍是你唯一的參考

一些二手類比型的或大陸進口的

發表於: 2009/12/15 8:47
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#6
新會員
新會員


查看用戶資訊
能請教各位前輩,小弟想買示波器(只用在寫PIC上)
規格要買多少的比較適用,還是有型號可供參考,
價位當然是不要太貴。謝謝!!

發表於: 2009/12/14 23:45
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#5
資深會員
資深會員


查看用戶資訊
pic 8pin mcu 不適合初學練習

無法debug 、不會 debug 、或著debug 工具太貴

以前我們是直接用 ice2000 來做,

後來有經驗了,都是直接用 pickit2/icd2 邊燒邊測或著用 simulator 功能驗證程序

頂多再拿一腳 io 做除錯輸出,接示波器debug

(8 pin 拿來做些小工具真的很方便)

發表於: 2009/12/10 10:40
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#4
中級會員
中級會員


查看用戶資訊
感謝2位的指導 謝謝

發表於: 2009/12/10 8:46
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#3
資深會員
資深會員


查看用戶資訊
Ryang 寫道:
1. 程式裡這樣設定就可以使用 Internal 4MHz RC 了。
[code]
list p=12f675 ; list directive to define processor
#include <p12f675.inc> ; processor specific variable definitions

errorlevel -302 ; suppress message 302 from list file

__CONFIG _CP_OFF & _CPD_OFF & _BODEN_OFF&_MCLRE_ON&_WDT_OFF&_PWRTE_ON& _INTRC_OSC_NOCLKOUT
;==================================
2. 先到右邊的 (代理商及授權Design House)打電話問(公司都不小) , 如沒辦法再到美國原廠買(運費不便宜)

發表於: 2009/12/7 15:24
Twitter Facebook Google Plus Linkedin Del.icio.us Digg Reddit Mr. Wong 頂部


Re: 請問使用pic12f675的clock可用內部4M嗎?
#2
版主
版主


查看用戶資訊
1. 程式裡這樣設定就可以使用 Internal 4MHz RC 了。
list      p=12f675           ; list directive to define processor
    
#include <p12f675.inc>        ; processor specific variable definitions

    
errorlevel  -302              suppress message 302 from list file

    __CONFIG   _CP_OFF 
_CPD_OFF _BODEN_OFF _MCLRE_ON _WDT_OFF _PWRTE_ON _INTRC_OSC_NOCLKOUT 

'__CONFIG' directive is used to embed configuration word within .asm file.
The lables following the directive are located in the respective .inc file.
See data sheet for additional information on configuration word settings.
:
:
        
ORG     0x000             processor reset vector
        
goto    main              go to beginning of program
    

        ORG     0x004             
interrupt vector location
        movwf   w_temp            
save off current W register contents
        movf    STATUS
,w          move status register into W register
        movwf    status_temp       
save off contents of STATUS register


isr code can go here or be located as a call subroutine elsewhere


        movf    status_temp
,w     retrieve copy of STATUS register
        movwf    STATUS            
restore pre-isr STATUS register contents
        swapf   w_temp
,f
        swapf   w_temp
,w          restore pre-isr W register contents
        retfie                    
; return from interrupt


these first 4 instructions are not required if the internal oscillator is not used
main
        call    0x3FF             
retrieve factory calibration value
        bsf     STATUS
,RP0        set file register bank to 1 
        movwf   OSCCAL            
update register with factory cal value 
        bcf     STATUS
,RP0        set file register bank to 0


remaining code goes here


參考 C:\Program Files\Microchip\MPASM Suite\Template\Code\12f675temp.asm

2. 到右邊的線上購買即可取得。

發表於: 2009/12/7 14:10
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... ]

教育訓練中心

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