]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/FreeRTOS-Plus-TCP/portable/NetworkInterface/Zynq/uncached_memory.h
Fix spelling issues.
[freertos] / FreeRTOS-Plus / Source / FreeRTOS-Plus-TCP / portable / NetworkInterface / Zynq / uncached_memory.h
1 /*\r
2  * uncached_memory.h\r
3  *\r
4  * This module will declare 1 MB of memory and switch off the caching for it.\r
5  *\r
6  * pucGetUncachedMemory( ulSize ) returns a trunc of this memory with a length\r
7  * rounded up to a multiple of 4 KB\r
8  *\r
9  * ucIsCachedMemory( pucBuffer ) returns non-zero if a given pointer is NOT\r
10  * within the range of the 1 MB non-cached memory.\r
11  *\r
12  */\r
13 \r
14 #ifndef UNCACHEMEMORY_H\r
15 \r
16 #define UNCACHEMEMORY_H\r
17 \r
18 uint8_t *pucGetUncachedMemory( uint32_t ulSize );\r
19 \r
20 uint8_t ucIsCachedMemory( const uint8_t *pucBuffer );\r
21 \r
22 #endif /* UNCACHEMEMORY_H */\r
23 \r