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
63599e25
Commit
63599e25
authored
8 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
cpu/msp430_common: fixed doxygen for msp430_types.h
parent
f8eaff4b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cpu/msp430_common/include/msp430_types.h
+24
-6
24 additions, 6 deletions
cpu/msp430_common/include/msp430_types.h
with
24 additions
and
6 deletions
cpu/msp430_common/include/msp430_types.h
+
24
−
6
View file @
63599e25
...
...
@@ -35,20 +35,38 @@ extern "C" {
#define EOVERFLOW (65)
#endif
/**
* @brief Definition of `time_t` for the MSP430
*
* @todo Remove once msp430 libc supports `time_t`
*/
typedef
unsigned
long
time_t
;
/**
* @brief Definition of `struct timespec` for the MSP430
*
* @todo Remove once msp430 libc supports `struct timespec`
*/
struct
timespec
{
time_t
tv_sec
;
/* S
econds */
long
tv_nsec
;
/* N
anoseconds */
time_t
tv_sec
;
/**< s
econds */
long
tv_nsec
;
/**< n
anoseconds */
};
/* TODO: remove once msp430 libc supports struct timeval */
/**
* @brief Definition of `struct timeval` for the MSP430
*
* @todo Remove once msp430 libc supports struct timeval
*/
struct
timeval
{
time_t
tv_sec
;
time_t
tv_usec
;
time_t
tv_sec
;
/**< seconds */
time_t
tv_usec
;
/**< microseconds */
};
/* TODO: remove once msp430 libc supports clockid_t */
/**
* @brief Definition of `clockid_t` for the MSP430
*
* @todo Remove once msp430 libc supports clockid_t
*/
typedef
int
clockid_t
;
#ifdef __cplusplus
...
...
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