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
|
@ -59,9 +59,11 @@
|
|||
#define PRINTER_DATA_OUT_PIPE 2
|
||||
|
||||
/* Function Prototypes: */
|
||||
uint8_t Printer_SendData(const void* const PrinterCommands, const uint16_t CommandSize);
|
||||
uint8_t Printer_GetDeviceID(char* DeviceIDString, const uint16_t BufferSize);
|
||||
uint8_t Printer_GetPortStatus(uint8_t* PortStatus);
|
||||
uint8_t Printer_SendData(const void* const PrinterCommands,
|
||||
const uint16_t CommandSize);
|
||||
uint8_t Printer_GetDeviceID(char* DeviceIDString,
|
||||
const uint16_t BufferSize);
|
||||
uint8_t Printer_GetPortStatus(uint8_t* const PortStatus);
|
||||
uint8_t Printer_SoftReset(void);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue