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
5eccbfb2
You need to sign in or sign up before continuing.
Commit
5eccbfb2
authored
9 years ago
by
Johann Fischer
Committed by
smlng
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
tests/driver_kw2xrf: adapt for netdev2 and add testmodes
parent
cf32ff7f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/driver_kw2xrf/Makefile
+1
-0
1 addition, 0 deletions
tests/driver_kw2xrf/Makefile
tests/driver_kw2xrf/main.c
+134
-1
134 additions, 1 deletion
tests/driver_kw2xrf/main.c
with
135 additions
and
1 deletion
tests/driver_kw2xrf/Makefile
+
1
−
0
View file @
5eccbfb2
...
...
@@ -9,6 +9,7 @@ USEMODULE += auto_init_gnrc_netif
USEMODULE
+=
gnrc_netif
USEMODULE
+=
gnrc_txtsnd
USEMODULE
+=
gnrc_nomac
USEMODULE
+=
gnrc_netdev_default
USEMODULE
+=
gnrc_pktdump
USEMODULE
+=
shell
USEMODULE
+=
shell_commands
...
...
This diff is collapsed.
Click to expand it.
tests/driver_kw2xrf/main.c
+
134
−
1
View file @
5eccbfb2
...
...
@@ -20,9 +20,142 @@
#include
<stdio.h>
#include
"shell.h"
#include
"kw2xrf.h"
#include
"shell_commands.h"
#include
"net/gnrc.h"
#include
"net/gnrc/pktdump.h"
#include
"net/gnrc/netif.h"
#include
"net/gnrc/netapi.h"
#include
"net/netopt.h"
#ifdef KW2XRF_TESTMODE
#include
"kw2xrf_tm.h"
/* utility functions */
static
bool
_is_number
(
char
*
str
)
{
for
(;
*
str
;
str
++
)
{
if
(
*
str
<
'0'
||
*
str
>
'9'
)
{
return
false
;
}
}
return
true
;
}
static
bool
_is_iface
(
kernel_pid_t
dev
)
{
kernel_pid_t
ifs
[
GNRC_NETIF_NUMOF
];
size_t
numof
=
gnrc_netif_get
(
ifs
);
for
(
size_t
i
=
0
;
i
<
numof
&&
i
<
GNRC_NETIF_NUMOF
;
i
++
)
{
if
(
ifs
[
i
]
==
dev
)
{
return
true
;
}
}
return
false
;
}
static
void
_set_test_mode
(
int
argc
,
char
**
argv
,
uint8_t
mode
)
{
(
void
)
argc
;
if
(
_is_number
(
argv
[
1
]))
{
kernel_pid_t
dev
=
(
kernel_pid_t
)
atoi
(
argv
[
1
]);
if
(
_is_iface
(
dev
))
{
gnrc_netapi_set
(
dev
,
NETOPT_RF_TESTMODE
,
0
,
(
void
*
)
&
mode
,
sizeof
(
mode
));
return
;
}
}
printf
(
"usage: %s <if_id>
\n
"
,
argv
[
0
]);
return
;
}
static
int
_tm_idle
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
NETOPT_RF_TESTMODE_IDLE
);
return
0
;
}
static
int
_tm_crx
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
NETOPT_RF_TESTMODE_CRX
);
return
0
;
}
static
int
_tm_ctx_cw
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
NETOPT_RF_TESTMODE_CTX_CW
);
return
0
;
}
static
int
_tm_ctx_prbs9
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
NETOPT_RF_TESTMODE_CTX_PRBS9
);
return
0
;
}
static
int
_tm_ctx_preamble
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
KW2XRF_TM_CTX_PREAMBLE
);
return
0
;
}
static
int
_tm_ctx_2mhz
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
KW2XRF_TM_CTX_2MHZ
);
return
0
;
}
static
int
_tm_ctx_200khz
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
KW2XRF_TM_CTX_200KHZ
);
return
0
;
}
static
int
_tm_ctx_1mbps_prbs9
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
KW2XRF_TM_CTX_1MBPS_PRBS9
);
return
0
;
}
static
int
_tm_ctx_ext
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
KW2XRF_TM_CTX_EXT
);
return
0
;
}
static
int
_tm_ctx_nm0
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
KW2XRF_TM_CTX_NM0
);
return
0
;
}
static
int
_tm_ctx_nm1
(
int
argc
,
char
**
argv
)
{
_set_test_mode
(
argc
,
argv
,
KW2XRF_TM_CTX_NM1
);
return
0
;
}
#endif
static
const
shell_command_t
shell_commands
[]
=
{
#ifdef KW2XRF_TESTMODE
{
"idle"
,
"xcvr idle mode"
,
_tm_idle
},
{
"ctx_prbs9"
,
"continues transmit the prbs9 pattern"
,
_tm_ctx_prbs9
},
{
"crx"
,
"continues receive mode, useful for current measuring"
,
_tm_crx
},
{
"ctx_preamble"
,
"continues transmit the 10101010 pattern"
,
_tm_ctx_preamble
},
{
"ctx_cw"
,
"continues transmit carrier wave"
,
_tm_ctx_cw
},
{
"ctx_2mhz"
,
"continues transmit modulated carrier"
,
_tm_ctx_2mhz
},
{
"ctx_200khz"
,
"continues transmit modulated carrier"
,
_tm_ctx_200khz
},
{
"ctx_1mbps_prbs9"
,
"continues transmit the prbs9 pattern"
,
_tm_ctx_1mbps_prbs9
},
{
"ctx_ext"
,
"continues transmit modulated carrier"
,
_tm_ctx_ext
},
{
"ctx_nm0"
,
"continues transmit modulated carrier"
,
_tm_ctx_nm0
},
{
"ctx_nm1"
,
"continues transmit modulated carrier"
,
_tm_ctx_nm1
},
#endif
{
NULL
,
NULL
,
NULL
}
};
int
main
(
void
)
{
...
...
@@ -39,7 +172,7 @@ int main(void)
puts
(
"Initialization successful - starting the shell now"
);
char
line_buf
[
SHELL_DEFAULT_BUFSIZE
];
shell_run
(
NULL
,
line_buf
,
SHELL_DEFAULT_BUFSIZE
);
shell_run
(
shell_commands
,
line_buf
,
SHELL_DEFAULT_BUFSIZE
);
return
0
;
}
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