Skip to content

Commit

Permalink
On some connections (Serial, >9600 baud) XON/XOFF flow control is too…
Browse files Browse the repository at this point in the history
… slow to reliably throttle data transfer when writing files, and data can be lost. By default we add a delay after each write to Storage to help avoid this, but if your connection is stable you can turn this off and greatly increase write speeds.
  • Loading branch information
gfwilliams committed Sep 5, 2024
1 parent b63872a commit bad66d7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion EspruinoTools
Submodule EspruinoTools updated 1 files
+27 −13 core/serial.js
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Espruino Web IDE",
"short_name": "Espruino IDE",
"description": "A Terminal and Graphical code Editor for Espruino JavaScript Microcontrollers",
"version": "0.79.5",
"version": "0.79.6",
"app": {
"background": {
"scripts": ["js/background.js"]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "espruino-web-ide",
"version": "0.79.5",
"version": "0.79.6",
"description": "A Terminal and Graphical code Editor for Espruino JavaScript Microcontrollers",
"//1": "-------------------------------------------------------- nw.js",
"main": "main.html",
Expand Down
2 changes: 1 addition & 1 deletion serviceworker.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Service worker for Offline Web IDE
const VERSION = 'v126';
const VERSION = 'v127';

const CACHED_RESOURCES = [
'blockly/blockly_espruino.js',
Expand Down

0 comments on commit bad66d7

Please sign in to comment.