Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
#define LX_USER_H
Files
loading...
SourceVuSTM32 Libraries and SamplesFx_Dual_InstanceLevelX/App/lx_user.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** LevelX Component */ /** */ /** User Specific */ /** */... /**************************************************************************/ /**************************************************************************/ #ifndef LX_USER_H #define LX_USER_H /* Defined, this option bypasses the NOR flash driver read routine in favor or reading the NOR memory directly, resulting in a significant performance increase. *//* ... */ /* #define LX_DIRECT_READ */ /* Defined, this causes the LevelX NOR instance open logic to verify free NOR sectors are all ones. *//* ... */ /* #define LX_FREE_SECTOR_DATA_VERIFY */ /* By default this value is 128 and defines the logical sector mapping cache size. Large values improve performance, but cost memory. The minimum size is 8 and all values must be a power of 2. *//* ... */ /* #define LX_NAND_SECTOR_MAPPING_CACHE_SIZE 128 */ /* Defined, this creates a direct mapping cache, such that there are no cache misses. It also requires that LX_NAND_SECTOR_MAPPING_CACHE_SIZE represents the exact number of total pages in your flash device. *//* ... */ /* #define LX_NAND_FLASH_DIRECT_MAPPING_CACHE */ /* Defined, this disabled the extended NOR cache. */ /* #define LX_NOR_DISABLE_EXTENDED_CACHE */ /* By default this value is 8, which represents a maximum of 8 sectors that can be cached in a NOR instance. *//* ... */ /* #define LX_NOR_EXTENDED_CACHE_SIZE 8 */ /* By default this value is 16 and defines the logical sector mapping cache size. Large values improve performance, but cost memory. The minimum size is 8 and all values must be a power of 2. *//* ... */ /* #define LX_NOR_SECTOR_MAPPING_CACHE_SIZE 16 */ /* Defined, this makes LevelX thread-safe by using a ThreadX mutex object throughout the API. *//* ... */ /* #define LX_THREAD_SAFE_ENABLE */ /* ... */ ...#endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.