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

@ -167,7 +167,7 @@ void PDITarget_DisableTargetPDI(void)
*
* \param[in] Byte Byte to send through the USART
*/
void PDITarget_SendByte(uint8_t Byte)
void PDITarget_SendByte(const uint8_t Byte)
{
#if defined(PDI_VIA_HARDWARE_USART)
/* Switch to Tx mode if currently in Rx mode */