Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
openocd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
openocd
Commits
7f6ad49d
Commit
7f6ad49d
authored
15 years ago
by
Zachary T Welch
Browse files
Options
Downloads
Patches
Plain Diff
Improve lpc2000.c command argument parsing.
parent
680e22c4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/flash/lpc2000.c
+5
-8
5 additions, 8 deletions
src/flash/lpc2000.c
with
5 additions
and
8 deletions
src/flash/lpc2000.c
+
5
−
8
View file @
7f6ad49d
...
...
@@ -501,7 +501,7 @@ static int lpc2000_flash_bank_command(struct command_context_s *cmd_ctx, char *c
}
lpc2000_info
->
iap_working_area
=
NULL
;
lpc2000_info
->
cclk
=
strtoul
(
args
[
7
],
NULL
,
0
);
COMMAND_PARSE_NUMBER
(
u32
,
args
[
7
],
lpc2000_info
->
cclk
);
lpc2000_info
->
calc_checksum
=
0
;
lpc2000_build_sector_list
(
bank
);
...
...
@@ -776,7 +776,6 @@ static int lpc2000_info(struct flash_bank_s *bank, char *buf, int buf_size)
static
int
lpc2000_handle_part_id_command
(
struct
command_context_s
*
cmd_ctx
,
char
*
cmd
,
char
**
args
,
int
argc
)
{
flash_bank_t
*
bank
;
uint32_t
param_table
[
5
];
uint32_t
result_table
[
4
];
int
status_code
;
...
...
@@ -786,12 +785,10 @@ static int lpc2000_handle_part_id_command(struct command_context_s *cmd_ctx, cha
return
ERROR_COMMAND_SYNTAX_ERROR
;
}
bank
=
get_flash_bank_by_num
(
strtoul
(
args
[
0
],
NULL
,
0
));
if
(
!
bank
)
{
command_print
(
cmd_ctx
,
"flash bank '#%s' is out of bounds"
,
args
[
0
]);
return
ERROR_OK
;
}
flash_bank_t
*
bank
;
int
retval
=
flash_command_get_bank_by_num
(
cmd_ctx
,
args
[
0
],
&
bank
);
if
(
ERROR_OK
!=
retval
)
return
retval
;
if
(
bank
->
target
->
state
!=
TARGET_HALTED
)
{
...
...
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