收藏本站
    • 您好,
      買賣IC網(wǎng)歡迎您。
    • 請登錄
    • 免費(fèi)注冊
    • 我的買賣
    • 新采購0
    • VIP會員服務(wù)
    • [北京]010-87982920
    • [深圳]0755-82701186
    • 網(wǎng)站導(dǎo)航
    發(fā)布緊急采購
    • IC現(xiàn)貨
    • IC急購
    • 電子元器件
    VIP會員服務(wù)
    • 您現(xiàn)在的位置:買賣IC網(wǎng) > PDF目錄10855 > PIC16LC74A-04/PT (Microchip Technology)IC MCU OTP 4KX14 A/D PWM 44TQFP PDF資料下載
    參數(shù)資料
    型號: PIC16LC74A-04/PT
    廠商: Microchip Technology
    文件頁數(shù): 18/114頁
    文件大?。?/td> 0K
    描述: IC MCU OTP 4KX14 A/D PWM 44TQFP
    標(biāo)準(zhǔn)包裝: 160
    系列: PIC® 16C
    核心處理器: PIC
    芯體尺寸: 8-位
    速度: 4MHz
    連通性: I²C,SPI,UART/USART
    外圍設(shè)備: 欠壓檢測/復(fù)位,POR,PWM,WDT
    輸入/輸出數(shù): 33
    程序存儲器容量: 7KB(4K x 14)
    程序存儲器類型: OTP
    RAM 容量: 192 x 8
    電壓 - 電源 (Vcc/Vdd): 2.5 V ~ 6 V
    數(shù)據(jù)轉(zhuǎn)換器: A/D 5x8b
    振蕩器型: 外部
    工作溫度: 0°C ~ 70°C
    封裝/外殼: 44-TQFP
    包裝: 托盤
    第1頁第2頁第3頁第4頁第5頁第6頁第7頁第8頁第9頁第10頁第11頁第12頁第13頁第14頁第15頁第16頁第17頁當(dāng)前第18頁第19頁第20頁第21頁第22頁第23頁第24頁第25頁第26頁第27頁第28頁第29頁第30頁第31頁第32頁第33頁第34頁第35頁第36頁第37頁第38頁第39頁第40頁第41頁第42頁第43頁第44頁第45頁第46頁第47頁第48頁第49頁第50頁第51頁第52頁第53頁第54頁第55頁第56頁第57頁第58頁第59頁第60頁第61頁第62頁第63頁第64頁第65頁第66頁第67頁第68頁第69頁第70頁第71頁第72頁第73頁第74頁第75頁第76頁第77頁第78頁第79頁第80頁第81頁第82頁第83頁第84頁第85頁第86頁第87頁第88頁第89頁第90頁第91頁第92頁第93頁第94頁第95頁第96頁第97頁第98頁第99頁第100頁第101頁第102頁第103頁第104頁第105頁第106頁第107頁第108頁第109頁第110頁第111頁第112頁第113頁第114頁
    PIC16C7X
    DS30390E-page 114
    1997 Microchip Technology Inc.
    12.4
    USART Synchronous Slave Mode
    Synchronous slave mode differs from the Master mode
    in the fact that the shift clock is supplied externally at
    the RC6/TX/CK pin (instead of being supplied internally
    in master mode). This allows the device to transfer or
    receive data while in SLEEP mode. Slave mode is
    entered by clearing bit CSRC (TXSTA<7>).
    12.4.1
    USART SYNCHRONOUS SLAVE
    TRANSMIT
    The operation of the synchronous master and slave
    modes are identical except in the case of the SLEEP
    mode.
    If two words are written to the TXREG and then the
    SLEEP
    instruction is executed, the following will occur:
    a)
    The rst word will immediately transfer to the
    TSR register and transmit.
    b)
    The second word will remain in TXREG register.
    c)
    Flag bit TXIF will not be set.
    d)
    When the rst word has been shifted out of TSR,
    the TXREG register will transfer the second
    word to the TSR and ag bit TXIF will now be
    set.
    e)
    If enable bit TXIE is set, the interrupt will wake
    the chip from SLEEP and if the global interrupt
    is enabled, the program will branch to the inter-
    rupt vector (0004h).
    Steps to follow when setting up a Synchronous Slave
    Transmission:
    1.
    Enable the synchronous slave serial port by set-
    ting bits SYNC and SPEN and clearing bit
    CSRC.
    2.
    Clear bits CREN and SREN.
    3.
    If interrupts are desired, then set enable bit
    TXIE.
    4.
    If 9-bit transmission is desired, then set bit TX9.
    5.
    Enable the transmission by setting enable bit
    TXEN.
    6.
    If 9-bit transmission is selected, the ninth bit
    should be loaded in bit TX9D.
    7.
    Start transmission by loading data to the
    TXREG register.
    Applicable Devices
    72 73 73A 74 74A 76 77
    12.4.2
    USART SYNCHRONOUS SLAVE
    RECEPTION
    The operation of the synchronous master and slave
    modes is identical except in the case of the SLEEP
    mode. Also, bit SREN is a don't care in slave mode.
    If receive is enabled, by setting bit CREN, prior to the
    SLEEP
    instruction, then a word may be received during
    SLEEP. On completely receiving the word, the RSR
    register will transfer the data to the RCREG register
    and if enable bit RCIE bit is set, the interrupt generated
    will wake the chip from SLEEP. If the global interrupt is
    enabled, the program will branch to the interrupt vector
    (0004h).
    Steps to follow when setting up a Synchronous Slave
    Reception:
    1.
    Enable the synchronous master serial port by
    setting bits SYNC and SPEN and clearing bit
    CSRC.
    2.
    If interrupts are desired, then set enable bit
    RCIE.
    3.
    If 9-bit reception is desired, then set bit RX9.
    4.
    To enable reception, set enable bit CREN.
    5.
    Flag bit RCIF will be set when reception is com-
    plete and an interrupt will be generated, if
    enable bit RCIE was set.
    6.
    Read the RCSTA register to get the ninth bit (if
    enabled) and determine if any error occurred
    during reception.
    7.
    Read the 8-bit received data by reading the
    RCREG register.
    8.
    If any error occurred, clear the error by clearing
    bit CREN.
    相關(guān)PDF資料
    PDF描述
    PIC16LC74A-04I/PT IC MCU OTP 4KX14 A/D PWM 44TQFP
    PIC16LC73BT-04/SS IC MCU OTP 4KX14 A/D PWM 28SSOP
    PIC16LC73BT-04/SO IC MCU OTP 4KX14 A/D PWM 28SOIC
    PIC16LC73BT-04I/SS IC MCU OTP 4KX14 A/D PWM 28SSOP
    PIC16LC73BT-04I/SO IC MCU OTP 4KX14 A/D PWM 28SOIC
    相關(guān)代理商/技術(shù)參數(shù)
    參數(shù)描述
    PIC16LC74AT-04/L 功能描述:8位微控制器 -MCU 7KB 192 RAM 33 I/O RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時(shí)鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風(fēng)格:SMD/SMT
    PIC16LC74AT-04/PQ 功能描述:8位微控制器 -MCU 7KB 192 RAM 33 I/O RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時(shí)鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風(fēng)格:SMD/SMT
    PIC16LC74AT-04/PT 功能描述:8位微控制器 -MCU 7KB 192 RAM 33 I/O RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時(shí)鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風(fēng)格:SMD/SMT
    PIC16LC74AT-04I/L 功能描述:8位微控制器 -MCU 7KB 192 RAM 33 I/O RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時(shí)鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風(fēng)格:SMD/SMT
    PIC16LC74AT-04I/PQ 功能描述:8位微控制器 -MCU 7KB 192 RAM 33 I/O RoHS:否 制造商:Silicon Labs 核心:8051 處理器系列:C8051F39x 數(shù)據(jù)總線寬度:8 bit 最大時(shí)鐘頻率:50 MHz 程序存儲器大小:16 KB 數(shù)據(jù) RAM 大小:1 KB 片上 ADC:Yes 工作電源電壓:1.8 V to 3.6 V 工作溫度范圍:- 40 C to + 105 C 封裝 / 箱體:QFN-20 安裝風(fēng)格:SMD/SMT
    發(fā)布緊急采購,3分鐘左右您將得到回復(fù)。

    采購需求

    (若只采購一條型號,填寫一行即可)

    發(fā)布成功!您可以繼續(xù)發(fā)布采購。也可以進(jìn)入我的后臺,查看報(bào)價(jià)

    發(fā)布成功!您可以繼續(xù)發(fā)布采購。也可以進(jìn)入我的后臺,查看報(bào)價(jià)

    *型號 *數(shù)量 廠商 批號 封裝
    添加更多采購

    我的聯(lián)系方式

    *
    *
    *
    • VIP會員服務(wù) |
    • 廣告服務(wù) |
    • 付款方式 |
    • 聯(lián)系我們 |
    • 招聘銷售 |
    • 免責(zé)條款 |
    • 網(wǎng)站地圖

    感谢您访问我们的网站,您可能还对以下资源感兴趣:

    三级特黄60分钟在线观看,美女在线永久免费网站,边吃奶边摸下很爽视频,娇妻在厨房被朋友玩得呻吟`
    <label id="ztc3l"><legend id="ztc3l"></legend></label>

        <rt id="ztc3l"><small id="ztc3l"><rt id="ztc3l"></rt></small></rt>