Fix doxygen documentation.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 1 Aug 2010 15:37:41 +0000 (15:37 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 1 Aug 2010 15:37:41 +0000 (15:37 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4116 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/compiler.h
bertos/drv/tas5706a.h

index 3426cd06e0bae5733a6eb114f3331fd5d7f8eaa8..08ccdead12ebc1462ee4b3785dc6a0a7fb3bf77a 100644 (file)
@@ -82,7 +82,9 @@
 
        /**
         * usage:
+        * \code
         * #define foo_init(...) PP_CAT(foo_init_, COUNT_PARMS(__VA_ARGS__)) (__VA_ARGS__)
+        * \endcode
         */
 
 #else
@@ -92,7 +94,9 @@
 
        /**
         * usage:
+        * \code
         * #define foo_init(args...) PP_CAT(foo_init_, COUNT_PARMS(args)) (args)
+        * \endcode
         */
 
 #endif
index 0c146ea6a62e8ca35e4901adf1e47d238dbbe29f..5d674db87a88fb53c033b2952121a910aef8e383 100644 (file)
@@ -84,6 +84,7 @@ typedef uint8_t tas5706a_vol_t;
  *
  * The volume must be expressed in % and will be at maximum CONFIG_TAS_MAX_VOL.
  *
+ * \param i2c The i2c context.
  * \param ch The channel to be controlled.
  * \param vol The volume you want to set.
  */
@@ -95,12 +96,15 @@ void tas5706a_setVolume_3(I2c *i2c, Tas5706aCh ch, tas5706a_vol_t vol);
  * When in low power mode, the TAS will not play any sound. You should put the TAS chip in low
  * power whenever possible to prevent overheating and to save power.
  *
+ * \param i2c The i2c context.
  * \param val True if you want to enable low power mode, false otherwise.
  */
 void tas5706a_setLowPower_2(I2c *i2c, bool val);
 
 /**
  * Initialize the TAS chip.
+ *
+ * \param i2c The i2c context.
  */
 void tas5706a_init_1(I2c *i2c);