mcp2510.searchresults

来自「pic单片机工程」· SEARCHRESULTS 代码 · 共 52 行

SEARCHRESULTS
52
字号
---- 16 匹配 (11 in 7 文件) ----
16F877A.h:76
#define MCLR_FROM_SLEEP 16    
#define NORMAL_POWER_UP 24    

Async.c:11
    This is a list of different settings in SPREG at FOSC 4 and 16 MHZ
    Baudrate     4      16
    9600         25     103
    19200        12     51
Mcdemo.c:49
Page 16. Partial support, enable/disable a folder by number.

2 Parameter settings   DLC = 8
Mcdemo.c:380
            case 16:
                // As the connection between folder and document is fixed, we do
                // not use these fields. We just make it possible to enable/disable
Mcp2510.c:80
        *can_id <<= 16;
        *can_id = *can_id +(tbufdata[EID8]<<8) + tbufdata[EID0];
        *ext = 1;
Mcp2510.c:91
    uchar mcp_addr = buffer*16 + 0x21, ctrl;
    mcp_read_can_id( mcp_addr, ext, can_id );
    mcp_read( mcp_addr-1, &ctrl, 1 );
Mcp2510.c:108
    uchar mcp_addr = buffer*16 + 0x21;
    mcp_write(mcp_addr+5, data, dlc );  // write data bytes
    mcp_write_can_id( mcp_addr, ext, can_id );  // write CAN id
Mcp2510.c:171
    // one bit will be 1+7+4+4 = 16 quanta in length.
    //
    // If you have a 4 MHz clock, setting the prescaler (BRP) to 1
    // gives a bit length of 16 * 0.5 us = 8 us => 125 kbit/s.
    //
    // If you have a 16 MHz clock, setting the prescaler (BRP) to 4
    // gives the same result.
    //
Mcp2510.h (inc):121
#define RXF3SIDH        16
#define RXF3SIDL        17
#define RXF3EID8        18
Mcp2510t.c:28
        printf("Address %02X to %02X: ", (j*16), (j*16+15) );
        for (i=0; i < 0x10 ; i++ ) {
            Store = SPI_putch(i);
Spi.c:35
    SSPCON = SSPEN+SPI_master_F16+CKP_high;    //SPI enabled, master, clk/16, clock=low
    SSPSTAT = 0x0;
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?