* By default a RIOT application comprises only the applications' code itself, the kernel,
* and platform specific code. In order to use additional modules, such as a
* particular device driver or a system library, you have to append the modules'
* names to the USEMODULE variable. For example, to build a application using the SHT11
* temperature sensor and 6LoWPAN network stack, your Makefile needs to contain
* these lines:
* \code
* USEMODULE += sht11
* USEMODULE += gnrc_udp
* \endcode
* To contribute a new module to RIOT, your module's Makefile needs to set the
* variable `MODULE` to a unique name. If the module depends on other modules, this
* information needs to be added to RIOT's `Makefile.dep`.
*
* ####The main function
*
* After the board is initialized, RIOT starts two threads: the idle thread and the
* main thread. The idle thread has the lowest priority and will run, whenever no
* other thread is ready to run. It will automatically use the lowest possible
* power mode for the device. The main thread - configured with a default priority
* that is right in the middle between the lowest and the highest available
* priority - is the first thread that runs and calls the main function. This
* function needs to be defined by the application.
*
* ####Choosing the right stack size
*
* Choosing the right stack size for a new thread is not an easy, but a very
* crucial task. Since memory is usually a scarce resource in IoT scenarios,
* one most be careful not to assign too much stack to a single thread.
* However, if you allocate too little memory for a stack, your application
* will probably crash. The minimum stack size depends also on some RIOT
* internal structs and is hardware dependent. In order to help developers
* finding the right stack size, RIOT defines some typical stack sizes in
* `cpu_conf.` (which should be provided by the implementation for all
* supported MCUs). The constants for these stack sizes are
*
* * `THREAD_STACKSIZE_IDLE`
* * `THREAD_STACKSIZE_DEFAULT`
* * `THREAD_EXTRA_STACKSIZE_PRINTF`
* * `THREAD_STACKSIZE_MAIN`
*
* and can be used by including `kernel.h`. ARM based platforms additionally
* define `THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT`, because newlibs printf
* implementation uses more memory for printing floating point numbers.
*
* `THREAD_STACKSIZE_IDLE` is the stack size for the idle thread and
* probably the smallest sensible stack size. `THREAD_STACKSIZE_DEFAULT`
* is a default size for any typical thread, _not_ using printf.
* `THREAD_EXTRA_STACKSIZE_PRINTF` defines additional stack space needed if the
* thread needs to call printf (which requires additional memory when using
* newlib). `THREAD_STACKSIZE_MAIN` is the stack size for the main thread
* and probably a good size for your application. (Note, that on most
* non-newlib dependent platforms this will probably equal
* `THREAD_STACKSIZE_DEFAULT`.
*
* ####The IPC
*
* Like any microkernel system, RIOT has an IPC API that enables data exchange
* between modules or a single module and the kernel. This API is documented in
* the [doxygen documentation](http://riot-os.org/api/). The IPC can be used in
* several ways, such as synchronous or asynchronous, blocking or non-blocking,
* with or without a message queue. In the default case, a thread does not have a
* message queue. Hence, messages sent in a non-blocking manner are lost, when the
* target thread is not in receive mode. A thread may set up a message queue using
* the [corresponding function](http://riot-os.org/api/group__kernel__msg.html),
* but has to provide the memory for this queue itself.
*
* ####Auto-init
*
* Most modules require initialization before they can be used. In some cases the
* initialization function does not require a parameter. For these modules you
* might use the auto-init feature by adding a line like
* ```
* USEMODULE += auto_init
* ```
* to your Makefile. Auto-init calls all module initialization functions with a
* `void` parameter just before the main thread gets executed.
*
* \section info_sec Community
*
* Whether you are looking for help with writing an application for RIOT, want to learn more about it, or just stay in the loop you are invited to join the RIOT-users mailing list. For developers who want to participate and contribute to the kernel development or integrate new MCU and platform support the [RIOT-devel mailing list](http://lists.riot-os.org/mailman/listinfo/devel) is the right place.