File tree Expand file tree Collapse file tree 4 files changed +11
-2
lines changed
kotlin/dev/micropythontools/communication Expand file tree Collapse file tree 4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
The Changelog
2
2
=============
3
3
4
+ 0.5.3 - 29.4.2025
5
+ ------------------
6
+
7
+ * Resolved issues related to receiving corrupted data over serial communication.
8
+
4
9
0.5.2 - 28.4.2025
5
10
------------------
6
11
Original file line number Diff line number Diff line change 1
1
# Plugin version
2
- version =0.5.2
2
+ version =0.5.3
3
3
# IDE type
4
4
platformType =PC
5
5
# IDE version to build against
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ internal class MpySerialClient(private val comm: MpyComm) : MpyClient {
43
43
val count = event.eventValue
44
44
val bytes = port.readBytes(count)
45
45
comm.dataReceived(bytes)
46
- port.readBytes()
47
46
this @MpySerialClient.thisLogger().debug(" > ${bytes.toString(StandardCharsets .UTF_8 )} " )
48
47
}
49
48
}
Original file line number Diff line number Diff line change 2
2
<name >MicroPython Tools</name >
3
3
<id >micropython-tools-jetbrains</id >
4
4
<change-notes ><![CDATA[
5
+ <h3>0.5.3 - 29-4-2025</h3>
6
+ <ul>
7
+ <li>Resolved issues related to receiving corrupted data over serial communication.</li>
8
+ </ul>
9
+ <br>
5
10
<h3>0.5.2 - 28-4-2025</h3>
6
11
<ul>
7
12
<li>Fixed communication retry logic issues, including mishandled timeout exceptions that caused silent connection failures.</li>
You can’t perform that action at this time.
0 commit comments