Skip to content

Commit

Permalink
docs: added and fixed method and variable docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ihagad committed Nov 14, 2024
1 parent fcb09e1 commit d7cc478
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/conio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Project smartfin-fw3
* @file conio.hpp
* Description: Particle serial input and output for command line use
* @author @emilybthorpe
* @author \@emilybthorpe
* @date Jul 20 2023
*/

Expand Down
5 changes: 5 additions & 0 deletions src/cli/conio.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@

#include <stdint.h>

/**
* @brief int length of character array SF_OSAL_printfBuffer
*
*/
#define SF_OSAL_PRINTF_BUFLEN 1536

#ifdef __cplusplus
Expand Down Expand Up @@ -41,6 +45,7 @@ extern "C"
* @brief Gets user input lin
* @param buffer buffer to write too
* @param buflen length of buffer
* @return int value of user inputs in the buffer array excluding '\b'
*/
int getline(char* buffer, int buflen);

Expand Down

0 comments on commit d7cc478

Please sign in to comment.