Fix some dosctrings errors and trailing whitespaces

Signed-off-by: Kirill Luchikhin <kirill.luchikhin@intel.com>
This commit is contained in:
Kirill Luchikhin
2014-07-29 21:46:48 +04:00
parent 731704eaac
commit d15bf22536
21 changed files with 134 additions and 107 deletions

View File

@ -317,4 +317,3 @@ NRF24l01::nrfListenForChannel() {
dataRecievedHandler(); /* let know that data arrived */
}
}

View File

@ -164,7 +164,7 @@ class NRF24l01 {
/**
* Send the buffer data
*
* @param *value pointer to the buffer
* @param value pointer to the buffer
*/
void nrfSend (uint8_t *value);
@ -226,7 +226,7 @@ class NRF24l01 {
/**
* Sink all arrived data into the provided buffer
*
* @param load size of the payload (MAX 32)
* @param data pointer to buffer of data
*/
void nrfGetData (uint8_t * data);
@ -238,7 +238,7 @@ class NRF24l01 {
/**
* Transmit provided data to the chip
*
* @param *dataout pointer to the buffer with data
* @param dataout pointer to the buffer with data
* @param len length of the buffer
*/
void nrfTransmitSync (uint8_t *dataout, uint8_t len);
@ -246,8 +246,8 @@ class NRF24l01 {
/**
* Recieve data from the chip
*
* @param *dataout pointer to the buffer with data
* @param *datain pointer to the buffer where the arrived data
* @param dataout pointer to the buffer with data
* @param datain pointer to the buffer where the arrived data
* will be sinked
* @param len length of the buffer
*/
@ -265,7 +265,7 @@ class NRF24l01 {
* Read continues data from register
*
* @param reg register address
* @param *value pointer to the buffer
* @param value pointer to the buffer
* @param len length of the buffer
*/
void nrfReadRegister (uint8_t reg, uint8_t * value, uint8_t len);
@ -274,7 +274,7 @@ class NRF24l01 {
* Write continues data to register
*
* @param reg register address
* @param *value pointer to the buffer
* @param value pointer to the buffer
* @param len length of the buffer
*/
void nrfWriteRegister (uint8_t reg, uint8_t * value, uint8_t len);