-
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
examples: add example of border router with XBee on native platform. #4448
examples: add example of border router with XBee on native platform. #4448
Conversation
I'm sorry I neither knew up until now, that native has a UART interface, nor that much about Xbee. I reassign. |
in the Makefile. If the baudrate is other than 9600, configure it in | ||
`xbee_conf.h`. | ||
|
||
See `img/page_001.svg` for the organization of modules and devices. |
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.
You can link images with the ![Caption](link)
syntax. With this notation, people who look at this page in the parsed version wouldn't likely know what you mean ;-)
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.
It seems that we cannot preview it on GitHub. Converting image to PNG may help.
Any news on this PR? |
46b4fc8
to
3bcced9
Compare
AFAIK, all the dependencies on this PR have been merged. Can you rebase and re-test if everything is ok? Thanks for all your contributions! |
static xbee_params_t xbee_params[] = { | ||
{ .uart = XBEE_UART, | ||
.baudrate = 9600U, | ||
// .baudrate = 115200U, |
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.
Can you use C style comments? :)
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.
Or even remove the line since it doesn't hurt...
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.
Removed.
3bcced9
to
9a1b993
Compare
Rebased. You may need #5364 for Clang. |
Was already fixed in #5360. |
@Yonezawa-T2 sorry for the loooong delay, but I think we're ready to merge this. Can you please rebase to update your PR? |
c27c01c
to
7748e3b
Compare
Rebased and squashed. I'm worrying about the scenario 1 in README.md. It may no longer work because RIOT respects RFC strictly now. I don't have enough time to test it. |
All the dependencies of this PR are merged now. Can you make the needed tests and try to merge it for the next release? It seems a very interesting PR. |
I was aiming to merge this since longtime ago, IMHO it's a wonderful PR which can help to configure a BR very quickly on OS X, since for now we don't have a easy-to-setup BR solution on this OS. I successfully configured OS X with the XBee with this PR. |
520f40f
to
69c20f8
Compare
Well now it hangs while setting a new address... before the rebase and the last commit it worked correctly... |
Note I don't have enough time to dig deeper. Sorry. |
Won't make it for this release unfortunately... |
What's the status here @Yonezawa-T2 ? |
Ping @Yonezawa-T2 ! |
IMHO we already have a good deal of |
I'm super interested on re-working this PR. @smlng you might close it as memo if you want. Regarding the examples issue, I'd say we can re-discuss it again when I have the time to re-open this. @Yonezawa-T2 is not responsive anymore, but anyways thanks for the already (hard) work done! |
closing as memo as suggested, removing milestone as well |
I'm struggling to make my Mac with XBee connected by USB to be a border router of 6LoWPAN. My objective is not fully achieved, but this example is useful to test modification of #4443, #4444, #4445, #4446, and #4447. This example depends on those PRs. The branch https://github.com/Yonezawa-T2/RIOT/tree/xbee_border_router is the master branch merged with those pull requests.
This PR may or may not be broken by #3622. I will investigate later.