Alan Rosenthal
Alan Rosenthal
## Summary The only use of the boards::context was to generate $(SCRIPTOUT) that is used by the linker. Instead of generating it at context phase, generate it via normal dependency...
Hi Folks, I've been working to improve the NuttX Makefiles over the last few weeks. See my contributions here: https://github.com/apache/incubator-nuttx/pulls?q=is%3Apr+is%3Aclosed+author%3AAlanRosenthal Now that I'm more familiar with the codebase/Makefiles, I have...
Hi, I'm doing some cleanup work on the Makefiles in incubator-nuttx. See https://github.com/apache/incubator-nuttx/issues/5205 for more details. I'm trying to figure out exactly what the `platform` folder is being used for....
The `C Coding Standard` states: ``` C Style Comments. C99/C11/C++ style comments (beginning with //) should not be used with NuttX. NuttX generally follows C89 and all code outside of...
Take this example: ``` TEST_GROUP(group1) { }; TEST(group1, test1) { CHECK_EQUAL(1,1); } TEST(group1, test2) { CHECK_EQUAL(1,1); } TEST(group1, test3) { CHECK_EQUAL(1,2); } TEST_GROUP(group2) { }; TEST(group2, test1) { CHECK_EQUAL(1,1); }...
This stackoverflow address the issue. http://stackoverflow.com/questions/20361301/google-app-engine-tic-tac-toe-java-example-oauth-fails/26028725#26028725