Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
openocd
Commits
2e88162b
Commit
2e88162b
authored
Apr 24, 2011
by
SimonQian
Committed by
Øyvind Harboe
Apr 26, 2011
Browse files
remove read of flash_size in STM32F2
parent
5d987bca
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/flash/nor/stm32f2xxx.c
View file @
2e88162b
...
...
@@ -578,15 +578,6 @@ static int stm32x_probe(struct flash_bank *bank)
return
retval
;
LOG_INFO
(
"device id = 0x%08"
PRIx32
""
,
device_id
);
/* get flash size from target. */
retval
=
target_read_u16
(
target
,
0x1FFFF7E0
,
&
num_pages
);
if
(
retval
!=
ERROR_OK
)
{
LOG_WARNING
(
"failed reading flash size, default to max target family"
);
/* failed reading flash size, default to max target family */
num_pages
=
0xffff
;
}
if
((
device_id
&
0x7ff
)
!=
0x411
)
{
LOG_WARNING
(
"Cannot identify target as a STM32 family, try the other STM32 drivers."
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment