Skip to content

Commit 06d2ddd

Browse files
committed
SpiMaster.write now takes an array argument #11
1 parent 4d291a5 commit 06d2ddd

File tree

5 files changed

+55
-16
lines changed

5 files changed

+55
-16
lines changed

ioio/ioio/src/main/java/ioio/smallbasic/SpiMasterImpl.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package ioio.smallbasic;
22

33
import java.io.IOException;
4+
import java.util.Arrays;
45

56
import ioio.lib.api.IOIO;
67
import ioio.lib.api.SpiMaster;
@@ -39,10 +40,12 @@ public void open(int miso, int mosi, int clk, int slaveSelect) throws IOExceptio
3940
validatePins();
4041
}
4142

42-
public void write(int address, int data) {
43+
public void write(int address, final byte[] write, int writeLen) {
4344
handleError();
4445
lock.invoke((i) -> {
45-
byte[] buffer = {(byte) address, (byte) data};
46+
byte[] buffer = new byte[writeLen + 1];
47+
buffer[0] = (byte)address;
48+
System.arraycopy(write, 0, buffer, 1, writeLen);
4649
spiMaster.writeRead(buffer, buffer.length, buffer.length, null, 0);
4750
});
4851
}
@@ -54,7 +57,7 @@ void loop() throws ConnectionLostException, InterruptedException {
5457

5558
@Override
5659
void setup(IOIO ioio) throws ConnectionLostException {
57-
Log.i(TAG, "setup entered: " + miso + " " + mosi + " " + clk + " " + slaveSelect);
60+
Log.i(TAG, "setup entered: miso:" + miso + " mosi:" + mosi + " clk:" + clk + " cs:" + slaveSelect);
5861
spiMaster = ioio.openSpiMaster(miso, mosi, clk, slaveSelect, SpiMaster.Rate.RATE_1M);
5962
}
6063

ioio/ioio/src/main/java/ioio/smallbasic/TwiMasterImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ public long readWrite(int address, int readLen, final byte[] write, int writeLen
4848
});
4949
}
5050

51-
public void write(int address, final byte[] write, int len) {
51+
public void write(int address, final byte[] write, int writeLen) {
5252
handleError();
5353
lock.invoke((i) -> {
54-
twiMaster.writeRead(address, false, write, len, null, 0);
54+
twiMaster.writeRead(address, false, write, writeLen, null, 0);
5555
});
5656
}
5757

ioio/main.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,11 @@ static int cmd_twimaster_write(var_s *self, int argc, slib_par_t *arg, var_s *re
9393
static int cmd_spimaster_write(var_s *self, int argc, slib_par_t *arg, var_s *retval) {
9494
int result = 0;
9595
if (argc != 2) {
96-
error(retval, "SpiMaster.write", 2);
96+
error(retval, "SpiMaster.write", ARRAY_SIZE);
9797
} else {
9898
int id = get_io_class_id(self, retval);
9999
if (id != -1) {
100-
auto address = get_param_int(argc, arg, 0, 0);
101-
auto data = get_param_int(argc, arg, 1, 0);
102-
result = g_ioTaskMap.at(id).invokeVoidInt2("write", address, data, retval);
100+
result = g_ioTaskMap.at(id).invokeWrite(argc, arg, retval);
103101
}
104102
}
105103
return result;

ioio/samples/duino-1088AS.bas

+44-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,52 @@ spi = ioio.openSpiMaster(misoPin, mosiPin, clkPin, csPin)
1010
ioio.waitForConnect(10)
1111

1212
spi.write(0x09, 0x00) ' Decode mode: no decode for digits 0-7
13-
spi.write(0x0A, 0x01) ' Intensity: maximum intensity 0x0 -> 0x0F
13+
spi.write(0x0A, 0x00) ' Intensity: maximum intensity 0x0 -> 0x0F
1414
spi.write(0x0B, 0x07) ' Scan limit: all digits
1515
spi.write(0x0C, 0x01) ' Shutdown: normal operation
1616

17+
for i = 1 to 8
18+
spi.write(i, 0)
19+
next
20+
21+
const glyph_a = [
22+
[0,0,0,0,1,0,0,0],
23+
[0,0,0,1,0,1,0,0],
24+
[0,0,1,0,0,0,1,0],
25+
[0,0,1,0,0,0,1,0],
26+
[0,0,1,1,1,1,1,0],
27+
[0,1,0,0,0,0,0,1],
28+
[0,1,0,0,0,0,0,1],
29+
[0,0,0,0,0,0,0,0],
30+
]
31+
32+
const glyph_b = [
33+
[0,1,0,0,0,0,0,0],
34+
[0,1,0,0,0,0,0,0],
35+
[0,1,0,0,0,0,0,0],
36+
[0,1,1,1,0,0,0,0],
37+
[0,1,0,0,1,0,0,0],
38+
[0,1,0,0,0,1,0,0],
39+
[0,1,0,0,0,1,0,0],
40+
[0,0,1,1,1,0,0,0],
41+
]
42+
43+
sub print_glyph(byref f)
44+
local i, k, n
45+
for i = 0 to 7
46+
n = 0
47+
for k = 0 to 7
48+
if (f[i][k] == 1) then
49+
n += pow(2, 7 - k)
50+
endif
51+
next k
52+
spi.write(i + 1, n)
53+
next i
54+
end
55+
1756
while 1
18-
for i = 1 to 8
19-
spi.write(i, 0x35)
20-
next
57+
print_glyph(glyph_a)
58+
delay 1000
59+
print_glyph(glyph_b)
2160
delay 1000
22-
wend
23-
'
61+
wend

ioio/samples/veml6030.bas

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ p3 = ioio.openTwiMaster(1, 0)
3434
ioio.waitForConnect(10)
3535

3636
rem configure default settings
37-
p3.write(address, [alsConfReg, alsConf])
37+
p3.write(address, alsConfReg, alsConf)
3838

3939
for i = 0 to 5
4040
print p3.readWrite(address, 2, [alsDataReg])

0 commit comments

Comments
 (0)