-
Notifications
You must be signed in to change notification settings - Fork 519
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
TestLinkLocalC compilation Problem Solved #303
base: master
Are you sure you want to change the base?
Conversation
Thanks for fixing the test apps. One question though, does |
I was getting the following error when i compiled the PppRouter PppRouterP.nc: In function ‘PppRouterP__Boot__booted’: One solution is to either comment the following line in the Makefile PFLAGS += -DNEW_PRINTF_SEMANTICS -DPRINTFUART_ENABLED or either if we add PrintfC,SerialStartC to the Configuration File. As you said if we add this it will not fit in the Telosb so, its better to comment it |
Wait, adding that line causes PppRouter to fit on the msp430? My testing:
Given that all variations compile (even if they don't fit on the microcontroller) I don't see what we gain by adding |
Its better to comment the PRINTFUART_ENABLED in the Makefile and remove those components (PrintfC,SerialStartC) from the configuration File. When i compile the PppRouter with Commented PRINTFUART_ENABLED and no components in the Configuration
I think it is the compiler version , i am using 4.5.3.. So previous commit(e232985) solves the problem |
4.5.3 has serious problems. You need to be using 4.6.3 On Wed, Aug 13, 2014 at 9:10 PM, md-jamal notifications@github.com wrote:
Eric B. Decker |
Can i get the upgrade link for msp430-4.6.3 |
After installing 4.6.3(struggle), and compiling ppprouter, `rom' overflowed by 1536 bytes |
understood. 4.5.3 still has known problems. that was why it was deprecated and Under certain circumstances it generates incorrect code. On Wed, Aug 13, 2014 at 10:35 PM, md-jamal notifications@github.com wrote:
Eric B. Decker |
Then how we can use Ppprouter application?? |
On Wed, Aug 13, 2014 at 11:43 PM, md-jamal notifications@github.com wrote:
a) use a different mote with more memory. b) look at the memory map of the ppprouter application and figure out what there are good reasons that the Umich folks have gone to using a Raspberry
Eric B. Decker |
No problems for us, because we have built a border router on beaglebone black with cc2520 driver and the driver is also accepted by the linux community |
On Thu, Aug 14, 2014 at 12:06 AM, md-jamal notifications@github.com wrote:
that makes a whole lot more sense than trying to shoe horn this code into a Some things are just plain silly.
Eric B. Decker |
It will be great if we can contribute both Raspberry Pi and Beaglebone-based solution to TinyOS repository. Would make IPv6 more usable. |
Its basically available in the linux source , again contributing to tinyos means ?? |
Updating blip documentation and any scripts needed to configure/run. |
Actually linux 6lowpan stack requires neighbor discovery to communicate (ping etc)..I developed whole neighbor discovery stack according to RFC 6775 and tested with the linux 6lowpan stack, also created a pull request but i think no one in the community is interested |
On Thu, Aug 14, 2014 at 12:25 AM, md-jamal notifications@github.com wrote:
Oh contraire. Very interested. The problem is finding someone with reasonable knowledge to review the code. I've asked Brad (who does have the knowledge) to review it but I don't have the requisit knowledge.
Eric B. Decker |
Oh then it's OK,but i have added this neighbor discovery code some time in the last year,but this is a lot of time enough to test,and there is no need of brad to again make neighbor discovery code when it is already present |
yeah I know its frustrating how long things take. Brad did some great work on the new make system and it took me forever to I suspect the same thing is happening with your submission. sorry about that. On Thu, Aug 14, 2014 at 12:41 AM, md-jamal notifications@github.com wrote:
Eric B. Decker |
@md-jamal I just looked at #295, and that needs be cleaned up a lot before anyone can reasonably be asked to look at it. For example, the last commit removes large chunks of code added by previous commits in the same series? It looks like I had a number of comments on the first commit that were never addressed as well (I'm guessing that @bradjc was waiting for these to be dealt with before looking at it). Lastly, since it's been sitting for a while, it no longer merges cleanly, which also needs to be fixed before anyone can look at it. To update the patchset attached to the PR, you can rebase and otherwise update that branch locally to get it into a state that's ready for review, and then simply |
@ppannuto Updated the Patchset .Please review the code. If there is need for any changes,i will change it |
Unable to compile the TestLinkLocalC Application present in the $(TOSDIR)/apps/blip/TestLinkLocal
Problem was it was unable to locate the printfUart.h directory and IN6_Prefix was not defined.
TestRPL application and PppRouter was also having same problem. This pull will solve it