You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a sub-issue of #11. Don't close #11 until all sub-issues are resolved.
I will help with this; just want to teach the principle too is all.
Instead of:
#define insp_pressure_default 40 // defualt value - hold this pressure while breathing - the value is changed if INSP_Pressure
// potentiometer is inatalled
Do:
/// Default value - hold this pressure while breathing - the value is changed if
/// INSP_Pressure potentiometer is installed
#define INSP_PRESSURE_DEFAULT 40
Notice I also add doxygen comments ///, and change the constant to all caps. Limit your max column width, or "ruler" as it is frequently called, to 100 chars.
The text was updated successfully, but these errors were encountered:
The clang-format autoformatter really doesn't like these long lines. You'll see once I get it pushed. See the email I sent you @nimrod46 and @giorakor so I can know how you want me to push changes.
This is a sub-issue of #11. Don't close #11 until all sub-issues are resolved.
I will help with this; just want to teach the principle too is all.
Instead of:
Do:
Notice I also add doxygen comments
///
, and change the constant to all caps. Limit your max column width, or "ruler" as it is frequently called, to 100 chars.The text was updated successfully, but these errors were encountered: