-
Notifications
You must be signed in to change notification settings - Fork 0
/
rfTestAsm.spin
259 lines (207 loc) · 4.39 KB
/
rfTestAsm.spin
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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
CON
_clkmode = xtal1 + pll16x
_xinfreq = 5_000_000 ' External oscillator = 5 MHz
ce=8
csn=9
clk=10
mosi=11
miso=12
irq=13
CMD_R_REGISTER=%0000_0000
CMD_W_REGISTER=%0010_0000
CMD_R_RX_PAYLOAD=%0110_0001
CMD_W_TX_PAYLOAD=%1010_0000
CMD_FLUSH_TX=%1110_0001
CMD_FLUSH_RX=%1110_0010
CMD_REUSE_TX_PL=%1110_0011
CMD_R_RX_PL_WID=%0110_0000
CMD_W_ACK_PAYLOAD=%1010_1000
CMD_W_TX_PAYLOAD_NOACK=%1011_0000
CMD_NOP=%1111_1111
REG_CONFIG=$00
REG_EN_AA=$01
REG_EN_RXADDR=$02
REG_SETUP_AW=$03
REG_SETUP_RETR=$04
REG_RF_CH=$05
REG_RF_SETUP=$06
REG_STATUS=$07
REG_OBSERVE=$08
REG_RPD=$09
REG_RX_ADDR_P0=$0A
REG_RX_ADDR_P1=$0B
REG_RX_ADDR_P2=$0C
REG_RX_ADDR_P3=$0D
REG_RX_ADDR_P4=$0E
REG_RX_ADDR_P5=$0F
REG_TX_ADDR=$10
REG_RX_PW_P0=$11
REG_RX_PW_P1=$12
REG_RX_PW_P2=$13
REG_RX_PW_P3=$14
REG_RX_PW_P4=$15
REG_RX_PW_P5=$16
REG_FIFO_STATUS=$17
REG_DYNPD=$1C
REG_FEATURE=$1D
VAR
byte spiBuffer[32]
byte lastStatus
long bufferAddress
long ceMask
long csnMask
long clkMask
long mosiMask
long misoMask
long irqMask
OBJ
pst: "Parallax Serial Terminal"
PUB rfTest | i
pst.start(115200)
dira[23..16]~~
outa[ce..mosi]~
outa[csn]~~
dira[ce]~~
dira[csn]~~
dira[clk]~~
dira[mosi]~~
dira[miso]~
dira[irq]~
pst.str(string("rfTest"))
pst.NewLine
setTxAddr(@rxaddr)
setRxAddr(@txaddr)
radioUp(true)
waitcnt(cnt+clkfreq>>7)
repeat i from 0 to 9
spiRegister(i,false,@spiBuffer,1)
pst.bin(spiBuffer[0],8)
pst.NewLine
spiRegister(REG_RX_ADDR_P1,false,@spiBuffer,5)
spiBuffer[0]:=10
spiRegister(REG_RX_PW_P1,true,@spiBuffer,1)
repeat while true
outa[23]~
i:=receive(@spiBuffer)
outa[23]~~
pst.dec(cnt)
pst.char(" ")
repeat while i>0
i--
pst.hex(spiBuffer[i],2)
pst.NewLine
PUB receive(buf) | width, fifoStatus
clearInterrupts(%100)
outa[ce]~~
waitpeq(0,1<<irq,0)
outa[ce]~
width:=10
spiComm(CMD_R_RX_PAYLOAD,FALSE,buf,width)
spiRegister(REG_FIFO_STATUS,FALSE,@fifoStatus,1)
clearInterrupts(%100)
refreshStatus
waitpeq(1<<irq,1<<irq,0)
return width
PUB getPayloadWidth : width
spiComm(CMD_R_RX_PL_WID,FALSE,@width,1)
PUB transmit(data,dataSize)
clearInterrupts(%111)
waitpeq(1<<irq,1<<irq,0)
spiComm(CMD_W_TX_PAYLOAD,TRUE,data,dataSize)
outa[ce]~~
waitcnt(cnt+clkfreq>>16)
outa[ce]~
waitpeq(0,1<<irq,0)
if lastStatus>>4 & 1
spiComm(CMD_FLUSH_TX,FALSE,0,0)
clearInterrupts(%111)
return FALSE
elseif lastStatus>>5 & 1
clearInterrupts(%111)
return TRUE
PUB setTXAddr(addr)
spiRegister(REG_RX_ADDR_P0,TRUE,addr,5)
spiRegister(REG_TX_ADDR,TRUE,addr,5)
PUB setRXAddr(addr)
spiRegister(REG_RX_ADDR_P1,TRUE,addr,5)
PUB radioUp(receiveMode)
maskWriteRegister(REG_CONFIG,%10 | (receiveMode & 1),%11)
PUB radioDown
maskWriteRegister(REG_CONFIG,0,%10)
PUB clearInterrupts(mask)
mask<<=4
spiRegister(REG_STATUS,TRUE,@mask,1)
PUB refreshStatus
return spiComm(CMD_NOP,FALSE,0,0)
PRI maskWriteRegister(register, value, mask) | oldVal
spiRegister(register,FALSE,@oldVal,1)
oldVal&=!mask
value&=mask
value|=oldVal
spiRegister(register,TRUE,@value,1)
return oldVal
PRI spiRegister(register, write, dataLoc, dataLen)
if write
register|=CMD_W_REGISTER
else
register|=CMD_R_REGISTER
return spiComm(register, write, dataLoc,dataLen)
PRI spiComm(command,writeMode,dataLoc,dataLen)
outa[clk]~
outa[csn]~
lastStatus:=spiInOutByte(command)
if writeMode
repeat dataLen
spiInOutByte(byte[dataLoc])
dataLoc++
else
repeat dataLen
byte[dataLoc]:=spiInOutByte(0)
dataLoc++
outa[csn]~~
'outa[23..16]:=lastStatus
return lastStatus
PRI spiInOutByte(outByte) : inByte
inByte:=0
outByte->=7
outa[mosi]:=outByte
repeat 8
outByte<-=1
outa[clk]~~
inByte<<=1
inByte|=ina[miso]
outa[mosi]:=outByte
outa[clk]~
DAT
txAddr byte 01,01,01,01,01
rxAddr byte 01,01,01,01,02
{{
DAT
org 0
asmStart mov _i, par
mov _c, #7
mov ind, #bufferLocation
:loop
movd #:idMov, ind
:idMov mov #0, _i
add _i, #4
add ind, #4
sub _i, 1 wz
if_nz jmp #:loop
spiInOut
mov spiIn, #0
ror spiOut, #7
or
spiIn res
spiOut res
_i res
_c res
ind res
bufferLocation res
cePin res
csnPin res
clkPin res
mosiPin res
misoPin res
irqPin res
}}