File tree Expand file tree Collapse file tree 3 files changed +7
-30
lines changed
boards/mro/pixracerpro/nuttx-config Expand file tree Collapse file tree 3 files changed +7
-30
lines changed Original file line number Diff line number Diff line change @@ -53,13 +53,11 @@ CONFIG_CDCACM_VENDORSTR="mRo"
53
53
CONFIG_CLOCK_MONOTONIC=y
54
54
CONFIG_DEBUG_FULLOPT=y
55
55
CONFIG_DEBUG_HARDFAULT_ALERT=y
56
- CONFIG_DEBUG_MEMFAULT=y
57
56
CONFIG_DEBUG_SYMBOLS=y
58
57
CONFIG_DEFAULT_SMALL=y
59
58
CONFIG_DEV_FIFO_SIZE=0
60
59
CONFIG_DEV_PIPE_MAXSIZE=1024
61
60
CONFIG_DEV_PIPE_SIZE=70
62
- CONFIG_DISABLE_MQUEUE=y
63
61
CONFIG_EXPERIMENTAL=y
64
62
CONFIG_FAT_DMAMEMORY=y
65
63
CONFIG_FAT_LCNAMES=y
@@ -237,3 +235,4 @@ CONFIG_USBDEV_MAXPOWER=500
237
235
CONFIG_USEC_PER_TICK=1000
238
236
CONFIG_USERMAIN_STACKSIZE=2944
239
237
CONFIG_USER_ENTRYPOINT="nsh_main"
238
+ CONFIG_WATCHDOG=y
Original file line number Diff line number Diff line change @@ -196,15 +196,6 @@ SECTIONS
196
196
_ebss = ABSOLUTE (.);
197
197
} > AXI_SRAM
198
198
199
- /* Emit the the D3 power domain section for locating BDMA data */
200
-
201
- .sram4_reserve (NOLOAD) :
202
- {
203
- *(.sram4 )
204
- . = ALIGN (4 );
205
- _sram4_heap_start = ABSOLUTE (.);
206
- } > SRAM4
207
-
208
199
/* Stabs debugging sections. */
209
200
.stab 0 : { *(.stab ) }
210
201
.stabstr 0 : { *(.stabstr ) }
@@ -218,13 +209,4 @@ SECTIONS
218
209
.debug_line 0 : { *(.debug_line ) }
219
210
.debug_pubnames 0 : { *(.debug_pubnames ) }
220
211
.debug_aranges 0 : { *(.debug_aranges ) }
221
-
222
- .ramfunc : {
223
- _sramfuncs = .;
224
- *(.ramfunc .ramfunc .*)
225
- . = ALIGN (4 );
226
- _eramfuncs = .;
227
- } > ITCM_RAM AT > FLASH
228
-
229
- _framfuncs = LOADADDR (.ramfunc );
230
212
}
Original file line number Diff line number Diff line change @@ -167,6 +167,7 @@ SECTIONS
167
167
_einit = ABSOLUTE (.);
168
168
} > FLASH
169
169
170
+
170
171
.ARM.extab : {
171
172
*(.ARM .extab *)
172
173
} > FLASH
@@ -197,8 +198,12 @@ SECTIONS
197
198
} > AXI_SRAM
198
199
199
200
/* Emit the the D3 power domain section for locating BDMA data */
200
- .sram4 (NOLOAD) :
201
+
202
+ .sram4_reserve (NOLOAD) :
201
203
{
204
+ *(.sram4 )
205
+ . = ALIGN (4 );
206
+ _sram4_heap_start = ABSOLUTE (.);
202
207
} > SRAM4
203
208
204
209
/* Stabs debugging sections. */
@@ -214,13 +219,4 @@ SECTIONS
214
219
.debug_line 0 : { *(.debug_line ) }
215
220
.debug_pubnames 0 : { *(.debug_pubnames ) }
216
221
.debug_aranges 0 : { *(.debug_aranges ) }
217
-
218
- .ramfunc : {
219
- _sramfuncs = .;
220
- *(.ramfunc .ramfunc .*)
221
- . = ALIGN (4 );
222
- _eramfuncs = .;
223
- } > ITCM_RAM AT > FLASH
224
-
225
- _framfuncs = LOADADDR (.ramfunc );
226
222
}
You can’t perform that action at this time.
0 commit comments