@@ -74,30 +74,30 @@ for data copy operations from ROM to required memory type.
74
74
Additional Configurations
75
75
=========================
76
76
This section shows additional configuration options that can be set in
77
- ``CMakeLists.txt ``
77
+ ``CMakeLists.txt ``.
78
78
79
- * if the memory is SRAM1, SRAM2, CCD, or AON, then place the full object in the
80
- sections for example:
79
+ * If the memory is `` SRAM1 ``, `` SRAM2 ``, `` CCD `` , or `` AON `` , then place the
80
+ full object in the sections. For example:
81
81
82
82
.. code-block :: none
83
83
84
84
zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2)
85
85
zephyr_code_relocate(FILES src/file2.c LOCATION SRAM)
86
86
87
- * if the memory type is appended with _DATA, _TEXT, _RODATA or _BSS, only the
88
- selected memory is placed in the required memory region.
89
- for example:
87
+ * If the memory type is appended with `` _DATA ``, `` _TEXT ``, `` _RODATA `` or
88
+ `` _BSS ``, only the selected memory is placed in the required memory region.
89
+ For example:
90
90
91
91
.. code-block :: none
92
92
93
93
zephyr_code_relocate(FILES src/file1.c LOCATION SRAM2_DATA)
94
94
zephyr_code_relocate(FILES src/file2.c LOCATION SRAM2_TEXT)
95
95
96
- * Multiple regions can also be appended together such as: SRAM2_DATA_BSS.
97
- This will place data and bss inside SRAM2.
96
+ * Multiple regions can also be appended together such as: `` SRAM2_DATA_BSS `` .
97
+ This will place data and bss inside `` SRAM2 `` .
98
98
99
- * Multiple files can be passed to the FILES argument, or CMake generator
100
- expressions can be used to relocate a comma-separated list of files
99
+ * Multiple files can be passed to the `` FILES `` argument, or CMake generator
100
+ expressions can be used to relocate a comma-separated list of files.
101
101
102
102
.. code-block :: none
103
103
0 commit comments