Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
14a8bbbf
Commit
14a8bbbf
authored
8 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
Fix some conditional compilation that got hosed in last changes for review of PR
parent
408c9d5c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configs/nucleo-144/src/stm32_bbsram.c
+4
-2
4 additions, 2 deletions
configs/nucleo-144/src/stm32_bbsram.c
with
4 additions
and
2 deletions
configs/nucleo-144/src/stm32_bbsram.c
+
4
−
2
View file @
14a8bbbf
...
...
@@ -293,6 +293,7 @@ static void copy_reverse(stack_word_t *dest, stack_word_t *src, int size)
*
dest
++
=
*
src
--
;
}
}
#endif
/* CONFIG_STM32F7_SAVE_CRASHDUMP */
/************************************************************************************
* Public Functions
...
...
@@ -327,7 +328,7 @@ int stm32_bbsram_int(void)
syslog
(
LOG_INFO
,
"stm32 bbsram: Failed to unlink Fault Log file [%s] (%d)
\n
"
,
HARDFAULT_PATH
,
rv
);
}
}
#endif
/* CONFIG_STM32_SAVE_CRASHDUMP */
#endif
/* CONFIG_STM32
F7
_SAVE_CRASHDUMP */
return
rv
;
}
...
...
@@ -336,6 +337,7 @@ int stm32_bbsram_int(void)
* Name: board_crashdump
************************************************************************************/
#if defined(CONFIG_STM32F7_SAVE_CRASHDUMP)
void
board_crashdump
(
uintptr_t
currentsp
,
FAR
void
*
tcb
,
FAR
const
uint8_t
*
filename
,
int
lineno
)
{
...
...
@@ -486,6 +488,6 @@ void board_crashdump(uintptr_t currentsp, FAR void *tcb,
up_systemreset
();
#endif
}
#endif
/* CONFIG_STM32_SAVE_CRASHDUMP */
#endif
/* CONFIG_STM32
F7
_SAVE_CRASHDUMP */
#endif
/* CONFIG_STM32_BBSRAM */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment