Frank Hunleth
Frank Hunleth
### Steps to reproduce Create 3 mix projects: `a`, `b`, and `test`. `test` depends on `a` and `b`. `b` depends on `a`. Add `a` to the `included_applications` list in `test`....
Is it possible to override the default application dependencies specified in the following link? https://github.com/bitwalker/distillery/blob/2.0.9/lib/mix/lib/releases/models/release.ex#L15-L30 For better or worse, most Nerves applications don't use config providers so I believe that...
It would be ideal to have some form of unit testing. Things I've looked at so far: * `scr_dump` - dumps the screen. Unfortunately, this is in an ncurses internal...
Currently ex_ncurses uses the stdin/stdout of the console that started it. You can specify a different tty to `initscr/1`, but this doesn't help for the remsh case since there's no...
There's a set of steps that many of us are used to typing that would be good to document. It depends on the device and your host computer, though. For...
The default C compiler rule for `make` uses the `$TARGET_ARCH` variable. Here's the definition: ``` "COMPILE.c", "$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH)", ``` http://git.savannah.gnu.org/cgit/make.git/tree/src/default.c#n480 This results in a bad `gcc` invocation for...
It's created directly under `_build`. I'm pretty sure that this is a really old piece of code that wasn't updated to move the directory to under `_`. The effect of...
## Setup - Version: Any - OS: Linux - Platform: Raspberry Pi ## Expected Behavior When enumerating serial ports on Linux, the built-in ones should return some information - even...
A side effect of encoding video is calculating motion vectors in hardware. It would be nice to get the motion vectors in Elixir to support things like simple motion detection...