]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/PIC18_WizC/Demo1/MallocConfig.h
commit 9f316c246baafa15c542a5aea81a94f26e3d6507
[freertos] / FreeRTOS / Demo / PIC18_WizC / Demo1 / MallocConfig.h
1 #ifndef _MALLOC_SETTINGS_H\r
2 #define _MALLOC_SETTINGS_H\r
3 /*********************************************************************\r
4 ** Title:               Dynamic memory (de-)allocation library for wizC.\r
5 **\r
6 ** Author:              Marcel van Lieshout\r
7 **\r
8 ** Copyright:   (c) 2005, HMCS, Marcel van Lieshout\r
9 **\r
10 ** License:             This software is released to the public domain and comes\r
11 **                              without warranty and/or guarantees of any kind. You have\r
12 **                              the right to use, copy, modify and/or (re-)distribute the\r
13 **                              software as long as the reference to the author is\r
14 **                              maintained in the software and a reference to the author\r
15 **                              is included in any documentation of each product in which\r
16 **                              this library (in it's original or in a modified form)\r
17 **                              is used.\r
18 *********************************************************************/\r
19 \r
20 /*********************************************************************\r
21 ** The model to use\r
22 *********************************************************************/\r
23 //#define MALLOC_SMALL\r
24 #define MALLOC_LARGE\r
25 \r
26 /*********************************************************************\r
27 ** The size of the heap\r
28 *********************************************************************/\r
29 #define MALLOC_HEAP_SIZE        (3200)\r
30 \r
31 /*********************************************************************\r
32 ** Should released memory be scribbled with 0x55 before releasing it?\r
33 *********************************************************************/\r
34 //#define MALLOC_SCRIBBLE\r
35 \r
36 /********************************************************************\r
37 ** Enable Debug-mode?\r
38 *********************************************************************/\r
39 //#define MALLOC_DEBUG\r
40 \r
41 #endif  /* _MALLOC_SETTINGS_H */\r