We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa35a49 commit 1d73914Copy full SHA for 1d73914
lib/device/rs232/network.cpp
@@ -55,7 +55,7 @@ rs232Network::rs232Network()
55
transmitBuffer->clear();
56
specialBuffer->clear();
57
58
- json.setLineEnding("\x9B"); // use ATASCII EOL for JSON records
+ json.setLineEnding("\r\n"); // use ATASCII EOL for JSON records
59
}
60
61
/**
lib/network-protocol/FS.cpp
@@ -74,6 +74,9 @@ bool NetworkProtocolFS::open_file()
74
bool NetworkProtocolFS::open_dir()
75
{
76
openMode = DIR;
77
+#ifndef BUILD_ATARI
78
+ this->setLineEnding("\r\n");
79
+#endif /* BUILD_RS232 */
80
dirBuffer.clear();
81
dirBuffer.shrink_to_fit();
82
update_dir_filename(opened_url);
0 commit comments