Changes between Version 8 and Version 9 of ControlSystems/SoftwareTeam/CodingConventions
- Timestamp:
- Oct 31, 2019, 9:11:07 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/CodingConventions
v8 v9 1 1 == Rules to Live (and code) By == 2 2 * 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)3 * Design from the user's (the driver's) perspective: what will he/she see on the screen and do with their controls. 4 4 * Write ''and test'' software starting with the lowest level (closest to the hardware) functions and then put them together into more complex functions. 5 5 * Never put cleverness before clarity