px-fwlib 0.10.0
Cross-platform embedded library and documentation for 8/16/32-bit microcontrollers generated with Doxygen 1.9.2
px_template.h
1#ifndef __PX_TEMPLATE_H__
2#define __PX_TEMPLATE_H__
3/* =============================================================================
4 ____ ___ ____ ___ _ _ ___ __ __ ___ __ __ TM
5 | _ \ |_ _| / ___| / _ \ | \ | | / _ \ | \/ | |_ _| \ \/ /
6 | |_) | | | | | | | | | | \| | | | | | | |\/| | | | \ /
7 | __/ | | | |___ | |_| | | |\ | | |_| | | | | | | | / \
8 |_| |___| \____| \___/ |_| \_| \___/ |_| |_| |___| /_/\_\
9
10 Copyright (c) 2021 Pieter Conradie <https://piconomix.com>
11
12 License: MIT
13 https://github.com/piconomix/px-fwlib/blob/master/LICENSE.md
14
15 Title: px_template.h : Template for a C module
16 Author(s): Pieter Conradie
17 Creation Date: 2008-11-01
18
19============================================================================= */
20
21/**
22 * @ingroup COMMON
23 * @defgroup PX_TEMPLATE px_template.h : Template for a C module
24 *
25 * Brief description (which ends at the dot).
26 *
27 * File(s):
28 * - common/inc/px_template.h
29 * - common/src/px_template.c
30 *
31 * Detailed description.
32 *
33 * @{
34 */
35
36/* _____STANDARD INCLUDES____________________________________________________ */
37
38/* _____PROJECT INCLUDES_____________________________________________________ */
39#include "px_defs.h"
40
41#ifdef __cplusplus
42extern "C" {
43#endif
44/* _____DEFINITIONS__________________________________________________________ */
45
46/* _____TYPE DEFINITIONS_____________________________________________________ */
47
48/* _____GLOBAL VARIABLES_____________________________________________________ */
49
50/* _____GLOBAL FUNCTION DECLARATIONS_________________________________________ */
51
52/* _____MACROS_______________________________________________________________ */
53
54#ifdef __cplusplus
55}
56#endif
57
58/// @}
59#endif