1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|
;;
;; spreadspace pic utils
;;
;;
;; Copyright (C) 2011-2013 Christian Pointner <equinox@spreadspace.org>
;;
;; This file is part of spreadspace pic utils.
;;
;; spreadspace pic utils is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; any later version.
;;
;; spreadspace pic utils is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with spreadspace pic utils. If not, see <http://www.gnu.org/licenses/>.
;;
;; --- transmit byte and add it to csum
com_tx_byte
movlb .4
movwf SSP1BUF
movlb .0
bcf INTPIN
xorwf csum,f
com_tx_byte_wait1
btfsc PORTB,5
goto com_tx_byte_wait1
com_tx_byte_wait2
btfss PORTB,5
goto com_tx_byte_wait2
movlb .4
movf SSP1BUF,w
movlb .0
bsf INTPIN
return
;; ---- wait for byte to be received
com_rx_byte
movlb .4
btfsc SSP1STAT,BF
goto com_rx_got_byte
btfss SSP1CON1,SSPOV
goto com_rx_byte
movf SSP1BUF,w
bcf SSP1CON1,SSPOV
goto com_rx_byte
com_rx_got_byte
movf SSP1BUF,w
movlb .0
return
;; ----- initialize com (this is called by bootmacro, it's not a subroutine - no return at the end)
com_init
movlb .3
bcf ANSELB,ANSB1 ; SDI as digital input
bcf ANSELB,ANSB4 ; SCK as digital input
movlb .1
movlw b'01110000' ; set internal OSC to 8MHz
movwf OSCCON
bcf TRISB,2 ; RB2(SDO) = out
bcf INTPIN ; interrupt line to master
movlb .4
movlw b'01000000' ; SMP=0,CKE=1
movwf SSP1STAT
movlw b'00100100' ; SSPEN=1,CKP=0,SSPM=0100(SPI Slave with SS)
movwf SSP1CON1
bcf SSP1CON3,BOEN
movlb .0
bsf INTPIN
|