doxygen: Added documentation to ultrasonic sensor

Signed-off-by: Kiveisha Yevgeniy <yevgeniy.kiveisha@intel.com>
This commit is contained in:
Kiveisha Yevgeniy 2014-06-10 07:24:56 +00:00
parent 236cc9acc1
commit a2ca2c1497
2 changed files with 36 additions and 1 deletions

View File

@ -41,6 +41,7 @@ sig_handler(int signo)
} }
} }
//! [Interesting]
void void
interrupt (void) { interrupt (void) {
sonar->ackEdgeDetected (); sonar->ackEdgeDetected ();
@ -59,3 +60,4 @@ main(int argc, char **argv)
return 0; return 0;
} }
//! [Interesting]

View File

@ -37,15 +37,48 @@
namespace upm { namespace upm {
/**
* @brief C++ API for HCSR04 (ultrasonic ranging module) component
*
* This file defines the HCSR04 C++ interface for libhcsr04
*
* @snippet hcsr04.cxx Interesting
*
*/
class HCSR04 { class HCSR04 {
public: public:
/**
* Instanciates a HCSR04 object
*
* @param triggerPin pin for triggering the sensor for distance
* @param echoPin pulse response to triggering
* @param fptr function pointer for handling raising and
* falling interrupts
*/
HCSR04 (uint8_t triggerPin, uint8_t echoPin, void (*fptr)(void)); HCSR04 (uint8_t triggerPin, uint8_t echoPin, void (*fptr)(void));
/**
* HCSR04 object destructor.
*/
~HCSR04 (); ~HCSR04 ();
/**
* Get the distance from the sensor.
*/
int getDistance (); int getDistance ();
/**
* On each interrupt this function will detect if the interrupt
* was falling edge or rising.
* Should be called from the interrupt handler.
*/
void ackEdgeDetected (); void ackEdgeDetected ();
uint8_t m_doWork; uint8_t m_doWork; /**< Flag to controll blocking function while waiting for falling edge interrupt */
/**
* Return name of the component
*/
std::string name() std::string name()
{ {
return m_name; return m_name;