-
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
board cpu and core: header file include guards repaired #4626
Conversation
#ifndef CHRONOS_BOARD_H_ | ||
#define CHRONOS_BOARD_H_ | ||
#ifndef CHRONOS_BOARD_H | ||
#define CHRONOS_BOARD__ |
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.
something went wrong here.
s/CHRONOS_BOARD__/CHRONOS_BOARD_H/
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.
Thanks for pointing, it's resolved now.
I am not sure of the implications of the changes to the CMSIS headers ( The SAMxxx headers are missing a trailing |
rm core/include/cscope.out |
I'm with @gebart, since the CMSIS headers define an open standard they are subject of changes and probably will change in the future. |
#ifndef __PIPE__H | ||
#define __PIPE__H | ||
#ifndef PIPE__H | ||
#define PIPE__H | ||
|
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.
could you change also the #endif
in L122 to #endif /* PIPE__H */
?
@rajma996 beside the discussion on the CMSIS headers and my request for adding a comment your changes looks good 👍 |
@BytesGalore Thanks for the feedback. CMSIS headers are restored. As I will be making a separate PR for /sys headers, changes in the sys/include/pipe.h will be done there :) |
@rajma996 I would say, please squash the 15 commits of this RP into a single one :) |
@rajma996 please rebase and squash the commits :) |
@BytesGalore sorry for being late, I tried some wierd method to sync with the main repo... I've reverted back to the last header updating commit. should I squash from the commit I first started editing headers. |
@rajma996 don't know if you strictly separated your changes in the individual commits, but it would be nice if you could squash to 3 commits like:
If this is not possible, no problem :) then just squash all your changes to one commit and rename it accordingly, e.g. |
@BytesGalore thanks for the reply. I reverted all the commits I used for syncing with the main repo previously and squashed everything from the beginning of this forked repo. Let me try rebasing with the current master. I will keep you updated. Again thanks :D |
@BytesGalore though changes in the commit looks fine, but Travis checks have failed....:( |
@@ -6842,7 +6842,11 @@ typedef struct | |||
} | |||
#endif /* __cplusplus */ | |||
|
|||
<<<<<<< HEAD:cpu/stm32f1/include/stm32f103xe.h |
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.
I guess this one slipped through :)
(That's what travis complains)
oh and please |
cool 👍 then lets kick travis |
#ifndef __ERRNO_H_ | ||
#define __ERRNO_H_ 1 | ||
#ifndef ERRNO_H | ||
#define ERRNO_H 1 | ||
|
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.
I guess this guy needs to remain with underscores
@BytesGalore build wasn't successful this time, but i am not able to understand the error.... looks like it couldn't connect for updates. |
@rajma996 seems unrelated I kicked travis to repeat the failed build |
@BytesGalore build is successful. :D |
nice one, ACK from my side 👍 |
@BytesGalore Based on previous requests on PR 4616 I should've made separate commit for each directory instead of squashing all into one. Let me work on that now... |
Please rebase. |
Still needs rebase. |
@BytesGalore I am a bit stuck here, I tried rebasing but wasn't successful :( Can you help... |
@rajma996 ok I see your changes are now made on your The goal is to keep the changes on the 109 headers but throw all other changes to get in sync with the original RIOT
Since you have then a new branch we need to find out how to "connect" it to this PR, or we just open a new PR and close this one. Sorry for the wall of text, I hope this helps a bit :) |
Can you rebase please? This will be reviewed for the next release. |
@kYc0o sorry for the delay. |
@@ -0,0 +1,91 @@ | |||
/* |
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.
This file was removed in master, so please don't re-include it.
Postponed due to feature freeze |
@rajma996, ping :-) |
superseded by #6407. |
pull request created as per the issue #2623
changes made in board directory and some files in cpu directory