您的位置:控制工程论坛网论坛 » 教程与手册 » SPI程序

xilinxue

xilinxue   |   当前状态:在线

总积分:16186  2024年可用积分:0

注册时间: 2008-06-26

最后登录时间: 2020-03-22

空间 发短消息加为好友

SPI程序

xilinxue  发表于 2008/11/4 19:03:26      737 查看 1 回复  [上一主题]  [下一主题]

手机阅读

;Name           :   SPIBUS
;Author         :   TongLin
;Description    :   This file implement all spi bus function (write and read)
;Creation date  :   2005-7-2 14:08
;Revision       :   1.00
;Compiler       :   Keil A51 7.01

NAME SPIBUS

;The following defined spi bus address
 SPIBUS_SO  EQU     91H
 SPIBUS_SI  EQU     92H
 SPIBUS_SCK  EQU     93H
 
?PR?SPIBUS SEGMENT CODE
 PUBLIC   SPI_WRITE
 PUBLIC   SPI_READ
 
 RSEG ?PR?SPIBUS
    USING 0
   
;implement spi bus write function
;input data: r7 is want to writting data
;use register: r7 and acc
;c procedure prototype: void spi_write( unsigned char wdata)
SPI_WRITE:   MOV     A,R7
                    MOV     R7,#08H
SPI_WRITE1:   RLC     A
                    MOV     SPIBUS_SI,C
                    SETB    SPIBUS_SCK
                    CLR     SPIBUS_SCK
                    DJNZ    R7,SPI_WRITE1
                    RET
                   
;implement spi bus read function
;input data: none
;use register: r7 and acc
;c procedure prototype: unsigned char spi_write( void )
SPI_READ:   MOV     R7,#08H
SPI_READ1:   MOV     C,SPIBUS_SO
                    RLC     A
                    SETB    SPIBUS_SCK
                    CLR     SPIBUS_SCK
                    DJNZ    R7,SPI_READ1
                    MOV     R7,A
                    RET
                   
                    END

1楼 0 0 回复
  • xilinxue

    xilinxue   |   当前状态:在线

    总积分:16186  2024年可用积分:0

    注册时间: 2008-06-26

    最后登录时间: 2020-03-22

    空间 发短消息加为好友

    xilinxue   发表于 2008/11/4 19:03:26

       这个程序是用汇编写的


    但是可以让C调用,也就是一个非常不错的混合编程的例子,大家可以学习里面的框架,非常不错,程序不是我写的,是一个高手写的,不过我用起来还是很好用,就拿出来和大家一起分享...


    有不明白的地方就跟帖子,我会解答的

    2楼 回复本楼

    引用 xilinxue 2008/11/4 19:03:26 发表于2楼的内容

总共 , 当前 /