Changes between Version 7 and Version 8 of ControlSystems/SoftwareTeam/CodingConventions


Ignore:
Timestamp:
Oct 31, 2019, 9:09:59 PM (6 years ago)
Author:
David Albert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ControlSystems/SoftwareTeam/CodingConventions

    v7 v8  
    11== Rules to Live (and code) By ==
    22 * Design from the top down, build from the bottom up
     3     * Design from the user's perspective: what the program will do (not how it will do it)
     4     * Write ''and test'' software starting with the lowest level (closest to the hardware) functions and then put them together into more complex functions.
    35 * Never put cleverness before clarity
    46     * when choosing between a clever algorithm and one that will do the job and is easier to understand, use the latter.