Update all demos, projects and bootloaders to indent all function parameters, one per line, for better readability.
Add missing const qualifiers to the demos.
This commit is contained in:
parent
83e293a6ec
commit
6bda628718
271 changed files with 1312 additions and 621 deletions
|
@ -53,7 +53,7 @@
|
|||
*
|
||||
* \param[in] FrameINData Pointer to the start of an Ethernet frame information structure
|
||||
*/
|
||||
void DecodeEthernetFrameHeader(Ethernet_Frame_Info_t* FrameINData)
|
||||
void DecodeEthernetFrameHeader(Ethernet_Frame_Info_t* const FrameINData)
|
||||
{
|
||||
#if !defined(NO_DECODE_ETHERNET)
|
||||
Ethernet_Frame_Header_t* FrameHeader = (Ethernet_Frame_Header_t*)FrameINData->FrameData;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue