Erik Nyquist
Erik Nyquist
Currently, the BMH portion of rxvm_fsearch uses the following heuristic to run a BMH search on a fixed substring from an expression; * Run BMH string search using fixed substring...
Currently, librxvm only handles ASCII input, one character == one byte. UTF-8 support would be nice. Need to research the best way to do this.
Add a section with some benchmarks, compare against built-in RE python lib, C regex lib, and google re2 (at least)..
Would be nice to be able to define custom authentication scheme for characteristics
CurieIMU now has dataReady() functions to check for newly available accel/gyro data, and also readAccelerometer/GyroScaled(), which reads then sensor and returns values scaled according to the configured range. Using these...
Hey, I was looking for exactly this for some project that I wanted to work on Linux & Windows (see https://github.com/eriknyquist/BrainfuckIntern), except that I didn't want the non-option arguments to...
The mailbox HW initialisation now happens in cores/arduino/main.cpp. All of the core code for accessing the mailbox HW now lives in cores/arduino/mailbox.cpp; the CurieMailbox library is now just a wrapper...
Instead of having a fixed "argc < 2" check, this check should be based on the number of positional arguments. For example, if there are 3 positional arguments, then the...