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
565d3ca7
Commit
565d3ca7
authored
9 years ago
by
Kaspar Schleiser
Browse files
Options
Downloads
Patches
Plain Diff
sys: shell: renamed mersenne_* to random_*
parent
9c93e72d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
sys/shell/commands/Makefile
+1
-1
1 addition, 1 deletion
sys/shell/commands/Makefile
sys/shell/commands/sc_random.c
+3
-3
3 additions, 3 deletions
sys/shell/commands/sc_random.c
sys/shell/commands/shell_commands.c
+4
-4
4 additions, 4 deletions
sys/shell/commands/shell_commands.c
with
8 additions
and
8 deletions
sys/shell/commands/Makefile
+
1
−
1
View file @
565d3ca7
...
@@ -21,7 +21,7 @@ ifneq (,$(filter lpc2387,$(USEMODULE)))
...
@@ -21,7 +21,7 @@ ifneq (,$(filter lpc2387,$(USEMODULE)))
SRC
+=
sc_heap.c
SRC
+=
sc_heap.c
endif
endif
ifneq
(,$(filter random,$(USEMODULE)))
ifneq
(,$(filter random,$(USEMODULE)))
SRC
+=
sc_
mersenne
.c
SRC
+=
sc_
random
.c
endif
endif
ifeq
($(CPU),x86)
ifeq
($(CPU),x86)
SRC
+=
sc_x86_lspci.c
SRC
+=
sc_x86_lspci.c
...
...
This diff is collapsed.
Click to expand it.
sys/shell/commands/sc_
mersenne
.c
→
sys/shell/commands/sc_
random
.c
+
3
−
3
View file @
565d3ca7
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
* @{
* @{
*
*
* @file
* @file
* @brief Shell commands for
mersenne twister
* @brief Shell commands for
random generators
*
*
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
* @author Christian Mehlis <mehlis@inf.fu-berlin.de>
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author Kaspar Schleiser <kaspar@schleiser.de>
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
#include
"random.h"
#include
"random.h"
int
_
mersenne
_init
(
int
argc
,
char
**
argv
)
int
_
random
_init
(
int
argc
,
char
**
argv
)
{
{
int
initval
;
int
initval
;
...
@@ -53,7 +53,7 @@ int _mersenne_init(int argc, char **argv)
...
@@ -53,7 +53,7 @@ int _mersenne_init(int argc, char **argv)
return
0
;
return
0
;
}
}
int
_
mersenne
_get
(
int
argc
,
char
**
argv
)
int
_
random
_get
(
int
argc
,
char
**
argv
)
{
{
(
void
)
argc
;
(
void
)
argc
;
(
void
)
argv
;
(
void
)
argv
;
...
...
This diff is collapsed.
Click to expand it.
sys/shell/commands/shell_commands.c
+
4
−
4
View file @
565d3ca7
...
@@ -96,8 +96,8 @@ extern int _icmpv6_ping(int argc, char **argv);
...
@@ -96,8 +96,8 @@ extern int _icmpv6_ping(int argc, char **argv);
#endif
#endif
#ifdef MODULE_RANDOM
#ifdef MODULE_RANDOM
extern
int
_
mersenne
_init
(
int
argc
,
char
**
argv
);
extern
int
_
random
_init
(
int
argc
,
char
**
argv
);
extern
int
_
mersenne
_get
(
int
argc
,
char
**
argv
);
extern
int
_
random
_get
(
int
argc
,
char
**
argv
);
#endif
#endif
#ifdef MODULE_GNRC_NETIF
#ifdef MODULE_GNRC_NETIF
...
@@ -187,8 +187,8 @@ const shell_command_t _shell_command_list[] = {
...
@@ -187,8 +187,8 @@ const shell_command_t _shell_command_list[] = {
#endif
#endif
#endif
#endif
#ifdef MODULE_RANDOM
#ifdef MODULE_RANDOM
{
"
mersenne
_init"
,
"initializes the PRNG"
,
_
mersenne
_init
},
{
"
random
_init"
,
"initializes the PRNG"
,
_
random
_init
},
{
"
mersenne
_get"
,
"returns 32 bit of pseudo randomness"
,
_
mersenne
_get
},
{
"
random
_get"
,
"returns 32 bit of pseudo randomness"
,
_
random
_get
},
#endif
#endif
#if FEATURE_PERIPH_RTC
#if FEATURE_PERIPH_RTC
{
"rtc"
,
"control RTC peripheral interface"
,
_rtc_handler
},
{
"rtc"
,
"control RTC peripheral interface"
,
_rtc_handler
},
...
...
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