Being an open hardware company, we love contributions from outside our organization. If you would like to contribute, please do the following:
- Fork our repository on Github
- Make a feature branch and commit your changes there
- Issue a pull request against the master branch
- Once you've issued a request, we'll review your changes and merge them once we've had a chance to test.
We use the Linux Kernel coding standard, which can be found here: https://www.kernel.org/doc/Documentation/CodingStyle
We do however ask for the following modification to be made to your source contributions: Single line if/for/while statements should always include braces.
So:
if (foo)
bar();
should be:
if (foo) {
bar();
}