diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ginput/dial.c | 3 | ||||
-rw-r--r-- | src/ginput/keyboard.c | 3 | ||||
-rw-r--r-- | src/ginput/mouse.c | 3 | ||||
-rw-r--r-- | src/ginput/toggle.c | 3 | ||||
-rw-r--r-- | src/gwin/button.c | 6 | ||||
-rw-r--r-- | src/gwin/console.c | 6 | ||||
-rw-r--r-- | src/gwin/graph.c | 6 |
7 files changed, 20 insertions, 10 deletions
diff --git a/src/ginput/dial.c b/src/ginput/dial.c index 233daa08..756861f8 100644 --- a/src/ginput/dial.c +++ b/src/ginput/dial.c @@ -22,7 +22,8 @@ * @file src/ginput/dial.c
* @brief GINPUT dial code.
*
- * @addtogroup GINPUT
+ * @defgroup Dial
+ * @ingroup GINPUT
* @{
*/
#include "ch.h"
diff --git a/src/ginput/keyboard.c b/src/ginput/keyboard.c index bd443e77..c2d84e9a 100644 --- a/src/ginput/keyboard.c +++ b/src/ginput/keyboard.c @@ -22,7 +22,8 @@ * @file src/ginput/keyboard.c
* @brief GINPUT keyboard code.
*
- * @addtogroup GINPUT
+ * @defgroup Keyboard
+ * @intogroup GINPUT
* @{
*/
#include "ch.h"
diff --git a/src/ginput/mouse.c b/src/ginput/mouse.c index f11e2c82..1b2fe897 100644 --- a/src/ginput/mouse.c +++ b/src/ginput/mouse.c @@ -22,7 +22,8 @@ * @file src/ginput/mouse.c
* @brief GINPUT mouse/touch code.
*
- * @addtogroup GINPUT_MOUSE
+ * @defgroup Mouse
+ * @ingroup GINPUT
* @{
*/
#include "ch.h"
diff --git a/src/ginput/toggle.c b/src/ginput/toggle.c index 3b2e98bf..447605a1 100644 --- a/src/ginput/toggle.c +++ b/src/ginput/toggle.c @@ -22,7 +22,8 @@ * @file src/ginput/toggle.c
* @brief GINPUT toggle code.
*
- * @addtogroup GINPUT_TOGGLE
+ * @defgroup Toggle
+ * @ingroup GINPUT
* @{
*/
#include "ch.h"
diff --git a/src/gwin/button.c b/src/gwin/button.c index 0c2c1ab3..3c1e4799 100644 --- a/src/gwin/button.c +++ b/src/gwin/button.c @@ -17,14 +17,16 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-
/**
* @file src/gwin/button.c
* @brief GWIN sub-system button code.
*
- * @addtogroup GWIN_BUTTON
+ * @defgroup Button
+ * @ingroup GWIN
+ *
* @{
*/
+
#include "ch.h"
#include "hal.h"
#include "gfx.h"
diff --git a/src/gwin/console.c b/src/gwin/console.c index 7854b658..10fa4257 100644 --- a/src/gwin/console.c +++ b/src/gwin/console.c @@ -17,14 +17,16 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-
/**
* @file src/gwin/console.c
* @brief GWIN sub-system console code.
*
- * @addtogroup GWIN_CONSOLE
+ * @defgroup Console
+ * @ingroup GWIN
+ *
* @{
*/
+
#include "ch.h"
#include "hal.h"
#include "gfx.h"
diff --git a/src/gwin/graph.c b/src/gwin/graph.c index cc457d7d..bc2af1e9 100644 --- a/src/gwin/graph.c +++ b/src/gwin/graph.c @@ -17,14 +17,16 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-
/**
* @file src/gwin/button.c
* @brief GWIN sub-system button code.
*
- * @addtogroup GWIN_BUTTON
+ * @defgroup Button
+ * @ingroup GWIN
+ *
* @{
*/
+
#include "ch.h"
#include "hal.h"
#include "gfx.h"
|