epsilon-sample-app-rust icon indicating copy to clipboard operation
epsilon-sample-app-rust copied to clipboard

A sample Rust app for the NumWorks graphing calculator

Results 8 epsilon-sample-app-rust issues
Sort by recently updated
recently updated
newest added
trafficstars

Hello, I was trying to display an image on the whole calculator screen, but strange things happened, sometimes the numworks crashed, other times I couldn't restart the app because "exam...

Replace deprecated `npx` by `npm exec`, see [the npx repo](https://github.com/npm/npx) and [npm docs on npx vs npm exec](https://docs.npmjs.com/cli/v9/commands/npm-exec#npx-vs-npm-execl). Fix the CI by running `npm exec --yes -- nwlink png-nwi src/icon.png...

This adds a couple of enums with some helper functions for handling output from keyboard scan and input events. fixes #6

I'm unable to get an app with an allocator to build. I tried using [simple_chunk_allocator](https://docs.rs/simple-chunk-allocator/0.1.5/simple_chunk_allocator/) to create a small region of memory that I could allocate dynamically. I set it...

Ideally we should always build a `.bin` file along the `.nwa` file. with `nwlink link-nwa`. This would let us catch link errors early. This would need a [post-build](https://github.com/rust-lang/cargo/issues/545) script which...

I couldn't find how to customize the executable filename. For now the executable is `epsilon-sample-app` but it should be `epsilon-sample-app.nwa`. Apparently it's something you [can tweak](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_target/spec/struct.TargetOptions.html#structfield.exe_suffix) if you come up...

eadk.rs does not bind to the eadk_keyboard_scan() system call, so there is currently no way to read key presses.