-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
driver: RIOT port for the Freescale kw2x radio #2329
Conversation
extern netdev_t kw2xrf_netdev; | ||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too many newlines.
@haukepetersen Thanks for you comments! Indeed the IRQ-disabling is not neccessary and was ment for testing purposes. I addressed you comments accordingly and will updated the PR later this day. There is an other question at the moment. So far, I only tested the driver with the /tests/netdev test.
Sry about my confusion. |
@jremmert-phytec-iot The netdev (and netapi) are currently under heavy construction, and I honestly doubt we will get them stable before Embedded world... I personally do not know much about the netapi adapter, maybe @authmillenon can shed some light on this? As a short-term solution towards the Embedded World I would probably suggest to implement the old transceiver interface for you radio. Although it will be thrown out at some point, you can run the current network stack (and the rpl_udp demo) with it. Also implementing this should only take a day or two... |
Ok, im currently in the process of adaption. Your right, that might be the savest option to get a stable demo. I think I missunderstood the netdev-adapter and the last days I couln't figure out how it works. |
ac6398c
to
9f808a9
Compare
9f808a9
to
8a3920a
Compare
Adapted to Transceiver interface and rebased. |
9f184dd
to
45554bf
Compare
Closed due to refactoring and reimplementation in #2756. |
This PR adds support for Freescale KW2x radio. The driver uses the new netdev interface exclusively, the old transceiver interface is not supported.
For the use with: MKW24D512, MKW22D512, MKW21D512, and
MKW21D256
This PR depends on #2059,
#2265and #2188.