Lots of people work together on Smoothie’s code.
[!SUCCESS] Contributing
Here is a list of the useful resources you want to read if you want to contribute to the project:
- Coding standards defines what your code should look like
- Contribution guidelines lists the dos and don’ts of proposing a contribution
- Github explains the proper procedure to submit a new feature via Github
- Developer’s guide points at a few useful things about the codebase
- How to file an issue explains everything you want to do when filing a new issue on Github
In order to make everybody’s life easier, and keep the codebase clean and manageable, here are a few rules you should follow when coding Smoothie stuff:
Un-necessary includes clutter the code, and makes compile time longer.
Bad example ( in a .h file ):
#include "Kernel.h"
#include "PanelScreen.h"
#include "Button.h"
#include <array>
#include <vector>
Instead do:
#include <array>
#include <vector>
class Kernel;
class PanelScreen;
class Button;
However, you still need to include whatever is necessary in your .cpp file.
Same thing: no unnecessary includes in .h files:
class Robot;
class Stepper;
class Planner;
class Kernel {
public:
Kernel();
Robot* robot;
Stepper* stepper;
Planner* planner;
};
Never include something in the header file (unless absolutely necessary). Include it in the .cpp file, and only if it is really required.
The only time this is needed is for time-critical code that must be inlined.
This is rarely needed and is only currently used by the makefile and main.cpp to eliminate named modules.
Your contributed code must compile cleanly with no warnings.
This is really important. If you make changes to existing code make sure it is thoroughly tested before issuing a pull request. If it is a new feature it should be tested as well as possible, or request testing by pointing to your branch in your repo.
Only one feature or bug fix or refactor should go into a specific pull request, it is very hard to scan a huge pull request and to test it, so keep the changes small and testable. Please follow git flow practices where possible. Branches should be called feature/feature-name or fix/fix-name, and only contain changes relevant to that feature or fix. If other changes need to be made that are not directly related to this change but this change relies on them then it should be noted in the pull request that it depends on pull request #xxxx.
There must not be any blocking wait loops in the code, there is no RTOS here so a blocking wait loop stops everything from running, and if long enough will trigger the watchdog timer. In the case of needing to wait for several milliseconds you can use the safe_delay_ms
or safe_delay_us
function call, which will call on_idle() to keep things going. However, note this is not an accurate delay. For accurate timing, an interrupt timer must be used.