Skip to content
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

MISRA compliance changes for FreeRTOS+TCP headers #165

Merged
merged 6 commits into from
Jul 29, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update FreeRTOS_IP_Private.h
  • Loading branch information
AniruddhaKanhere authored Jul 28, 2020
commit dcdafb28b864989bf9e5c535a4d7da028c3a5324
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,9 @@ void vSocketWakeUpUser( FreeRTOS_Socket_t *pxSocket );

/*
* Some helping function, their meaning should be clear.
* Utility functions can be used anywhere in the source. Cannot be defined
* conditionally.
* Going by MISRA rules, these utility functions should not be defined
* if they are not being used anywhwere. But their use depends on the
* application and hence these functions are defined unconditionally.
*/
static portINLINE uint32_t ulChar2u32 (const uint8_t *apChr);
static portINLINE uint32_t ulChar2u32 (const uint8_t *apChr)
Expand Down