Geoff Gustafson
Geoff Gustafson
When debugging with jerryscript-debugger-ts project, since we concatenate all sources into one big file for our JS "modules", the debugger shows the one big source file. By using a source...
We have a lot of test stuff scattered across the repo. We'd like to improve things and know exactly where a particular type of test belongs. We'd like to be...
If you test w/ tests/test-ws6-server.js on K64F (run node tests/tools/test-ws6-client.js on Linux), after it's done and the close occurs, you'll see a garbage string printed in the last payload on...
When the ring buffer is too full, signalling a callback fails. To behave correctly, the caller should probably find out this and even though it's a pretty bad error, they...
PR #1470 was a step in this direction, but only for documenting events. We'd like to move our documentation to be more like [Node](https://nodejs.org/dist/latest-v6.x/docs/api/) instead of WebIDL.
[Node.js](http://nodejs.org) now recommends v6.9.2 "for most users," which is much newer than what we originally based our code on. We should try to update our APIs to track the changes...
I just happened to notice that if I stick a ZJS_PRINT in zjs_buffer_find and run samples/UART.js, I see it calls that find function six times for every character I type...
We need to make the ring buffer size easily configurable by the user, so like move that up to some global place where they'll look for a few key tunables....
Some testing @jimmy-huang and I did revealed that nine 4-byte UUIDs are allocated in the BLE code for one of our samples (see PR #191). Each we think is using...
As @kenchris suggested, the canvas APIs are already familiar to web developers so following them would be most natural for the graphics library in PR #1557. We won't hold up...