Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
There is a gross segfault... but only when it timesout for some reason.
|
|
Turns out uint8_t is passed by reference by default since it's just a
typedef for char. As a result the length of args cannot be computed in
runCommand. The caller is now responsible for computing the number of
args and then passing them to runCommand
openCameraFd now returns the result and writes the file descriptor in
the fd pointer.
Fix an inverted if statement in runComamnd
Fix inverted read logic in snapShotToFile function
|
|
Thanks to @dpfrey for the excellent support resolving our build issues
related to this file
|
|
|
|
|
|
Mostly lifted from here https://github.com/adafruit/Adafruit-VC0706-Serial-Camera-Library/tree/master/examples/Snapshot
|
|
Most of this is ported directly from the Adafruit repo with some small
changes
Still lots of magic numbers floating around that I would like to squash
but I'm not sure if there is really any point.
|
|
|
|
|