Skip to content

Commit 5de32c7

Browse files
committed
commenting out print outs for performance test
1 parent 92801d0 commit 5de32c7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

screen.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,12 @@ namespace user_interface_base {
101101
radio.sendString(name + "," + bitmap.height)
102102
basic.pause(25)
103103

104-
basic.showString("W")
104+
// basic.showString("W")
105105
while (waitForAck()) {
106106
radio.sendString(name + "," + bitmap.height);
107107
basic.pause(25)
108108
}
109-
basic.showString("R")
109+
// basic.showString("R")
110110

111111
// Send each row of the bitmap:
112112
// basic.showString("S")
@@ -115,22 +115,22 @@ namespace user_interface_base {
115115
// Fill buffer & send it over radio:
116116
bitmap.getRows(row, rowBuffer);
117117

118-
basic.showString("B")
118+
// basic.showString("B")
119119
radio.sendBuffer(rowBuffer);
120120
basic.pause(50)
121121

122122
while (waitForAck()) {
123-
basic.showString("B")
123+
// basic.showString("B")
124124
radio.sendBuffer(rowBuffer);
125125

126-
basic.showString("W")
126+
// basic.showString("W")
127127
basic.pause(50)
128128
}
129129

130-
basic.showString("A")
130+
// basic.showString("A")
131131
}
132132

133-
basic.showString("D")
133+
// basic.showString("D")
134134
}
135135

136136

0 commit comments

Comments
 (0)