Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
2ce2b533
Commit
2ce2b533
authored
8 years ago
by
Thomas Eichinger
Committed by
Oleg Hahm
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
doc: msba2-tools: doxygen fixes
parent
798557c3
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
boards/msba2-common/tools/src/boot.h
+6
-2
6 additions, 2 deletions
boards/msba2-common/tools/src/boot.h
boards/msba2-common/tools/src/chipinfo.h
+16
-10
16 additions, 10 deletions
boards/msba2-common/tools/src/chipinfo.h
with
22 additions
and
12 deletions
boards/msba2-common/tools/src/boot.h
+
6
−
2
View file @
2ce2b533
...
...
@@ -16,7 +16,11 @@
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* @brief structure to hold boot partition
*/
typedef
struct
{
int
size
;
const
int
*
prog
;
int
size
;
/**< size of partition */
const
int
*
prog
;
/**< partition data */
}
boot_t
;
This diff is collapsed.
Click to expand it.
boards/msba2-common/tools/src/chipinfo.h
+
16
−
10
View file @
2ce2b533
...
...
@@ -18,20 +18,26 @@
extern
char
*
lpc_return_strings
[];
/**
* @brief struct defining sector information
*/
struct
sector_info_struct
{
/* an array of */
int
address
;
/* where each sector is located */
int
size
;
/* and how big it is */
int
address
;
/*
*<
where each sector is located */
int
size
;
/*
*<
and how big it is */
};
/**
* @brief alksd
*/
struct
chip_info_struct
{
char
*
part_number
;
/* human readable part number */
char
*
id_string
;
/* id string sent by "J" command */
unsigned
int
ram_addr
;
/* where to download into RAM */
int
chunk_size
;
/* download to ram chunk size */
int
num_sector
;
/* number of flash sectors */
struct
sector_info_struct
*
layout
;
/* layout of sectors */
const
unsigned
int
*
bootprog
;
/* code that boots into user program
(NULL = DTR/RTS only) */
char
*
part_number
;
/*
*<
human readable part number */
char
*
id_string
;
/*
*<
id string sent by "J" command */
unsigned
int
ram_addr
;
/*
*<
where to download into RAM */
int
chunk_size
;
/*
*<
download to ram chunk size */
int
num_sector
;
/*
*<
number of flash sectors */
struct
sector_info_struct
*
layout
;
/*
*<
layout of sectors */
const
unsigned
int
*
bootprog
;
/*
*<
code that boots into user program
(NULL = DTR/RTS only) */
};
extern
struct
chip_info_struct
chip_info
[];
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