mkleemann/uart
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
AVR module: UART - Universal Asynchronous Receiver Transmitter ============================================================================== A submodule used in other projects. Currently cmake is used to build a library of the module. The path structure within the project should be as follows. The includes are looked for in the subdirectory "config" at the same level as the module. Environment: ------------ <some project path> : | +- config | | | +- uart_config.h | +- uart | +- <submodule sources> Use the following git commands to get the submodule: # to get the submodule git submodule add git@github.com:mkleemann/uart.git <path/to/uart/module> # commit the submodule to your repository git commit # update your submodule, when needs be git submodule update To use the submodule, you may make use of the cmake-avr toolchain. The project has to define the include search path at the parent directory of the module. Have fun! M.