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.c
1
/* =============================================================================
2
____ ___ ____ ___ _ _ ___ __ __ ___ __ __ TM
3
| _ \ |_ _| / ___| / _ \ | \ | | / _ \ | \/ | |_ _| \ \/ /
4
| |_) | | | | | | | | | | \| | | | | | | |\/| | | | \ /
5
| __/ | | | |___ | |_| | | |\ | | |_| | | | | | | | / \
6
|_| |___| \____| \___/ |_| \_| \___/ |_| |_| |___| /_/\_\
7
8
Copyright (c) 2021 Pieter Conradie <https://piconomix.com>
9
10
License: MIT
11
https://github.com/piconomix/px-fwlib/blob/master/LICENSE.md
12
13
Title: px_template.h : Template for a C module
14
Author(s): Pieter Conradie
15
Creation Date: 2008-11-01
16
17
============================================================================= */
18
19
/* _____STANDARD INCLUDES____________________________________________________ */
20
21
/* _____PROJECT INCLUDES_____________________________________________________ */
22
#include "px_template.h"
23
#include "px_log.h"
24
25
/* _____LOCAL DEFINITIONS____________________________________________________ */
26
PX_LOG_NAME
(__FILE__);
27
28
/* _____MACROS_______________________________________________________________ */
29
30
/* _____GLOBAL VARIABLES_____________________________________________________ */
31
32
/* _____LOCAL VARIABLES______________________________________________________ */
33
34
/* _____LOCAL FUNCTION DECLARATIONS__________________________________________ */
35
36
/* _____LOCAL FUNCTIONS______________________________________________________ */
37
38
/* _____GLOBAL FUNCTIONS_____________________________________________________ */
39
PX_LOG_NAME
#define PX_LOG_NAME(name)
Macro to declare a log name string once for each file to reduce code size.
Definition:
px_log.h:349