Add const qualifier to the parameters of Projects' functions where possible.

This commit is contained in:
Dean Camera 2009-12-20 06:23:24 +00:00
parent e73f05b8b2
commit b408a5fe62
19 changed files with 73 additions and 70 deletions

View file

@ -101,7 +101,7 @@
/* Function Prototypes: */
void PDITarget_EnableTargetPDI(void);
void PDITarget_DisableTargetPDI(void);
void PDITarget_SendByte(uint8_t Byte);
void PDITarget_SendByte(const uint8_t Byte);
uint8_t PDITarget_ReceiveByte(void);
void PDITarget_SendBreak(void);
bool PDITarget_WaitWhileNVMBusBusy(void);