doc: fix doc

This commit is contained in:
King Kévin 2017-08-19 13:33:00 +02:00
parent 76079d178b
commit 2d7b8306cd
4 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@
*
*/
/** STM32F1 application example
* @file main.c
* @file application.c
* @author King Kévin <kingkevin@cuvoodoo.info>
* @date 2016-2017
*/
@ -131,9 +131,9 @@ DSTATUS disk_initialize (BYTE pdrv)
}
/** control device specific features and miscellaneous functions other than generic read/write
* @param[in] pdrv physical drive number
* @param[in] drv physical drive number
* @param[in] cmd control command code
* @param[io] buff pointer to the control data
* @param[out] buff pointer to the control data
* @return RES_*
* @note FatFs function to be implement by user
*/
@ -199,7 +199,7 @@ DRESULT disk_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count)
}
/** write data to the sector(s) of storage device.
* @param[in] pdrv physical drive number
* @param[in] drv physical drive number
* @param[out] buff pointer to the data to be written
* @param[in] sector sector number to write from
* @param[in] count number of sectors to write

View File

@ -24,7 +24,7 @@
extern volatile bool radio_bluetooth_transmitted;
/** has a message been received */
extern volatile bool radio_bluetooth_received;
/** last valid message received (including \r\n ending and \0) */
/** last valid message received ((including Carriage Return and Line Feed ending and NULL termination) */
extern volatile char radio_bluetooth_message[82+1];
/** setup USART peripheral for Bluetooth communication */

View File

@ -22,7 +22,7 @@
/** has a NMEA-0183 GPS message been received */
extern volatile bool radio_gps_received;
/** last valid NMEA-0183 GPS message received (including \r\n ending and \0) */
/** last valid NMEA-0183 GPS message received (including Carriage Return and Line Feed ending and NULL termination) */
extern volatile char radio_gps_message[82+1];
/** setup USART peripheral for GPS communication */

View File

@ -24,7 +24,7 @@
extern volatile bool sensor_forumslader_transmitted;
/** has a forumslader message been received */
extern volatile bool sensor_forumslader_received;
/** last valid forumslader message received (including \r\n ending and \0) */
/** last valid forumslader message received (including Carriage Return and Line Feed ending and NULL termination) */
extern volatile char sensor_forumslader_message[82+1];
/** setup USART peripheral for forumslader communication */