X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Fphase.h;h=f4e760eac6d21377c86ab7d19edc289d3ba490aa;hb=27fef4ed34eb237817defa14242e726ccad70948;hp=70e44e57e85cd570a74f7a9f69cca4fc272b0526;hpb=41625d1b16c8f1904c3a2a40b6972725311c66a8;p=bertos.git diff --git a/drv/phase.h b/drv/phase.h old mode 100755 new mode 100644 index 70e44e57..f4e760ea --- a/drv/phase.h +++ b/drv/phase.h @@ -1,6 +1,31 @@ -/*! +/** * \file * * @@ -14,6 +39,9 @@ /*#* *#* $Log$ + *#* Revision 1.2 2006/07/19 12:56:26 bernie + *#* Convert to new Doxygen style. + *#* *#* Revision 1.1 2005/11/04 18:06:44 bernie *#* Import into DevLib. *#* @@ -58,7 +86,7 @@ #define TRIAC_MAX_POWER 100 #define TRIAC_POWER_K TRIAC_MAX_DUTY * (1 / sqrt(2 * TRIAC_MAX_POWER)) -/*! +/** * \name Types for duty and power. * \{ */ @@ -69,15 +97,15 @@ typedef uint16_t triac_power_t; DB(extern bool phase_initialized;) -/*! +/** * \name Type for triac control. * \{ */ typedef struct Triac { - Timer timer; /*!< Timer for phase control. */ - triac_duty_t duty; /*!< Duty cycle of the channel. */ - bool running; /*!< True when the timer is active. */ + Timer timer; /**< Timer for phase control. */ + triac_duty_t duty; /**< Duty cycle of the channel. */ + bool running; /**< True when the timer is active. */ } Triac; /* \} */