User manual

Table Of Contents
460
mikoC PRO for PIC32
MikroElektronika
/*******************************************
* functions
*/
/*
* put the constant string pointed to by s to the ENC transmit buffer.
*/
/*unsigned int putConstString(const code char *s)
{
unsigned int ctr = 0;
while(*s)
{
Spi_Ethernet_putByte(*s++);
ctr++;
}
return(ctr);
}*/
/*
* it will be much faster to use library Spi_Ethernet_putConstString routine
* instead of putConstString routine above. However, the code will be a little
* bit bigger. User should choose between size and speed and pick the implementation
that
* suites him best. If you choose to go with the putConstString denition above
* the #dene line below should be commented out.
*
*/
#dene putConstString SPI_Ethernet_putConstString
/*
* put the string pointed to by s to the ENC transmit buffer
*/
/*unsigned int putString(char *s)
{
unsigned int ctr = 0;
while(*s)
{
Spi_Ethernet_putByte(*s++);
ctr++;
}
return(ctr);
}*/
/*
* it will be much faster to use library Spi_Ethernet_putString routine
* instead of putString routine above. However, the code will be a little
* bit bigger. User should choose between size and speed and pick the implementation
that
* suites him best. If you choose to go with the putString denition above
* the #dene line below should be commented out.
*
*/
#dene putString SPI_Ethernet_putString