Skip to content

Commit

Permalink
- edit comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sentouki committed Jan 30, 2023
1 parent a0dcf0a commit 0f56702
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions LCD4Pico/LCD4PicoBase/LCD4PicoBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ namespace lcd4pico
const uint8_t (&DATAPINS)[bit_mode];

/**
* @brief Construct a new LCD4PicoBase object.
* @brief Construct a new object.
*
* @param Data_Pins Data pins order: (D0,D1,D2,D3,) D4,D5,D6,D7 .
*/
Expand Down Expand Up @@ -131,17 +131,17 @@ namespace lcd4pico
/**
* @brief Checks whether the LCD is busy processing instructions.
*
* @return true The display is busy processing current instruction and cannot accept any new instruction now.
* @return false The display accepts new instructions
* @return true The display is busy processing current instructions and is now unable to accept new instructions.
* @return false The display is ready to accept new instructions.
*/
bool isBusy();

/**
* @brief Checks whether the LCD is busy processing instructions.
*
* @param addrCounter Address Counter
* @return true The display is busy processing current instruction and cannot accept any new instruction now.
* @return false The display accepts new instructions
* @return true The display is busy processing current instructions and is now unable to accept new instructions.
* @return false The display is ready to accept new instructions.
*/
bool isBusy(uint8_t &addrCounter);

Expand Down

0 comments on commit 0f56702

Please sign in to comment.