px-fwlib 0.10.0
Cross-platform embedded library and documentation for 8/16/32-bit microcontrollers generated with Doxygen 1.9.2
px_crc32_cfg_template.h
1#ifndef __PX_CRC32_CFG_H__
2#define __PX_CRC32_CFG_H__
3/* =============================================================================
4 ____ ___ ____ ___ _ _ ___ __ __ ___ __ __ TM
5 | _ \ |_ _| / ___| / _ \ | \ | | / _ \ | \/ | |_ _| \ \/ /
6 | |_) | | | | | | | | | | \| | | | | | | |\/| | | | \ /
7 | __/ | | | |___ | |_| | | |\ | | |_| | | | | | | | / \
8 |_| |___| \____| \___/ |_| \_| \___/ |_| |_| |___| /_/\_\
9
10 Copyright (c) 2019 Pieter Conradie <https://piconomix.com>
11
12 License: MIT
13 https://github.com/piconomix/px-fwlib/blob/master/LICENSE.md
14
15 Title: px_crc32_cfg.h : 32-bit CRC calculator configuration
16 Author(s): Pieter Conradie
17 Creation Date: 2019-08-06
18
19============================================================================= */
20
21/**
22 * @addtogroup PX_CRC32
23 *
24 * @{
25 */
26
27/* _____STANDARD INCLUDES____________________________________________________ */
28
29/* _____PROJECT INCLUDES_____________________________________________________ */
30#include "px_defs.h"
31
32/* _____DEFINITIONS__________________________________________________________ */
33/// Generate table in RAM to speed up CRC calculation
34#define PX_CRC32_RAM_TABLE 0
35
36/// Use table in ROM to speed up CRC calculation
37#define PX_CRC32_ROM_TABLE 0
38
39/// @}
40#endif