Skip to content

Commit 14eba15

Browse files
committed
Implement picoserve webserver
1 parent 014ab0c commit 14eba15

File tree

26 files changed

+1490
-140
lines changed

26 files changed

+1490
-140
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"files.associations": {
33
"*.s": "riscv",
4-
"*.mlog.jinja": "mlog"
4+
"*.mlog.jinja": "mlog",
5+
"*.svd": "xml"
56
},
67
"[markdown]": {
78
"editor.formatOnSave": true,

mod/src/main/kotlin/gay/object/mlogv32/ProcessorAccess.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,6 @@ data class SerialRequest(
429429

430430
if (overflowCount > 0) Log.warn("$device RX buffer is full, $overflowCount bytes dropped!")
431431

432-
if (fromUart.isNotEmpty()) Log.info("Received from $device: $fromUart")
433432
for (byte in fromUart) {
434433
tx.writeByte(byte.toByte())
435434
}

0 commit comments

Comments
 (0)