[JDY08] Added Doxygen comments
This commit is contained in:
parent
4ca305ed24
commit
804c6b3d89
1 changed files with 17 additions and 3 deletions
|
@ -3,12 +3,26 @@
|
||||||
|
|
||||||
#include "ISerial.h"
|
#include "ISerial.h"
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class JDY08
|
||||||
|
|
||||||
|
\brief Control class for %JDY08 module.
|
||||||
|
Most methods supported by this module are implemented in ISerial interface.
|
||||||
|
*/
|
||||||
class JDY08: public ISerial {
|
class JDY08: public ISerial {
|
||||||
public:
|
public:
|
||||||
// constructor
|
/*!
|
||||||
|
\brief Default constructor.
|
||||||
|
|
||||||
|
\param mod Instance of Module that will be used to communicate with the radio.
|
||||||
|
*/
|
||||||
JDY08(Module* mod);
|
JDY08(Module* mod);
|
||||||
|
|
||||||
// basic methods
|
/*!
|
||||||
|
\brief Initialization method.
|
||||||
|
|
||||||
|
\param speed Baud rate to use for UART interface.
|
||||||
|
*/
|
||||||
void begin(long speed);
|
void begin(long speed);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue