Skip to content
Thomas Eichinger edited this page Jan 14, 2014 · 30 revisions

Coding Conventions

General

Types

  • Be careful with platform dependent type sizes like int or long. Use data types that include the bit length in the name like uint16_t when you need to make sure that a certain variable is exactly of this length.
  • The use of typedefs for structs and pointers is allowed.
  • Type definitions (using typedef) always end on "_t".
  • If a typedef is used for a struct, it has to be specified at the struct definition (i.e., not as a separate line). E.g.:
    typedef struct {
        uint8_t a;
        uint8_t b;
    } foobar_t;

Variables

  • Do NOT use global variables unless it is unavoidable.
  • If you declare a variable within a header file, you MUST use the keyword extern.

Functions

  • Every function needs a prototype in addition to its definition. If a prototype is specified within a .c file it has to be declared BEFORE any function definitions.
  • If the scope of a function is limited to one file, it MUST be declared static.
  • Functions without parameters must be specified with (void).
  • Keep functions short! As a rule of thumb, the function's body should not exceed one screen.
  • Do NOT use global macros defining more than one line of code. Use inline functions instead.

Return values

  • Any function must return one of the following values:
  • logical value (zero or not zero)
  • an error code (given as a negative number or zero) or a positive status value
  • the count of read or written bytes/values for I/O functions
  • the position or address (for search functions)
  • a pointer
  • NULL indicates an error case, too.
  • Do NOT return structs or other larger types! These would get copied to the stack, resulting in expensive operations. Moreover, some compilers have trouble with larger return types. Use pointers to structs instead and take care of the structs lifetime.
  • If possible, prefer signed types over unsigned ones in order to be able to add error codes later on.

Naming

  • Names of all public functions and variables must start with the name of the corresponding library, e.g.:
    thread_getpid(void);
    hwtimer_init_comp(uint32_t fcpu);
    int transceiver_pid;
  • Private functions and variables do NOT have this library prefix.
  • Do NOT use CamelCase. Function, variable and file names as well as enums, structs or typedefs are written in lowercase with underscores.
    /* instead of: */
    void CameCaseNamenFunction(int camelCaseNamedVar);
 
    /* write: */
    void  camel_case_named_function(int camel_case_named_var);

Indentation and braces

  • Indentations are four spaces (i.e., NO tab characters).
  • As an exception to the Linux coding style, the closing brace is empty on a line of its own when followed by an else, too. When followed by a while in a do-statement, it goes into the same line.
  • Use curly braces even for one-line blocks. This improves debugging and later additions.
    /* instead of: */
    if (debug) println("DEBUG");
    else println("DEBUG ELSE");
 
    /* write: */
    if (debug) {
        println("DEBUG");
    } 
    else {
        println("DEBUG ELSE");
    }
  • Commas are always followed by a space.
  • For complex statements it is always good to use more parentheses - or split up the statement and simplify it.

Includes

  • The include of system headers (in <>-brackets) always precede RIOT specific includes (in quotes).

Documentation

  • All documentation must be in English.
  • All files contain the copyright note and the author.
  • Doxygen documentation is mandatory for all header files.
  • Every header file includes a general description about the provided functionality.
  • Every function must be documented - including parameters and return value.

An examplary doxygen documentation in a header file can look like this.

    /*
     * Copyright (C) 2014 Peter Schmerzl <peter@schmerzl-os.org>
     *
     * This file is subject to the terms and conditions of the GNU Lesser General
     * Public License v2.1. See the file LICENSE in the top level directory for more
     * details.
     */

    /**
     * @ingroup foobar
     * @{
     *
     * @file        filename.h|c
     * @brief       Definitions for foo and bar functions.
     *
     * More detailed information about the file and the functionality implemented.
     *
     * @author      Peter Schmerzl <peter@schmerzl-os.org>
     *
     */
     
    /**
     * @brief   Set the state of foobar.
     *
     * @param[in]  state      The new state of foobar.
     * @param[out] old_state  The old state of foobar is written to this variable.
     *
     * @return 1 if setting the state was successful, 0 otherwise.
     */
     int set_foobar(int state, int old_state);

Git

  • Make one commit per change.
  • The first line of the commit message describes the main feature of the commit.
Clone this wiki locally