20a4673f98
* First draft of storage APIs * bumped pxt-core * using fixed instances to seprate temp from permanent * send console to storage * sim support * missing sim stubs * adding storage blocks * more sim support * remove storage from default package * fix rendering of ms * render raw ms * slize at better place * duplicate bundled dir * refactor limit * simplify limit logic
12 lines
376 B
TypeScript
12 lines
376 B
TypeScript
namespace storage {
|
|
// automatically send console output to temp storage
|
|
storage.temporary.remove("console.txt");
|
|
console.addListener(function(line) {
|
|
const fn = "console.txt";
|
|
const mxs = 65536;
|
|
const t = control.millis();
|
|
storage.temporary.appendLine(fn, `${t}> ${line}`);
|
|
storage.temporary.limit(fn, 65536);
|
|
})
|
|
}
|