Improve menu folder documentation

This commit is contained in:
Robin Jones 2025-02-21 20:07:34 +00:00
parent 3f43955523
commit 243417501d
2 changed files with 33 additions and 11 deletions

View File

@ -1,12 +1,29 @@
/**
* @file hdmi.h
* @brief Header file for HDMI-related functions.
* @ingroup menu
*/
#ifndef HDMI_H__
#define HDMI_H__
#include "boot/boot.h"
/**
* @brief Clears the game ID from the HDMI interface.
*
* This function clears the current game ID from the HDMI interface.
*/
void hdmi_clear_game_id(void);
void hdmi_clear_game_id (void);
void hdmi_send_game_id (boot_params_t *boot_params);
/**
* @brief Sends the game ID to the HDMI interface.
*
* This function sends the provided game ID to the HDMI interface using the
* specified boot parameters.
*
* @param boot_params A pointer to the boot parameters containing the game ID.
*/
void hdmi_send_game_id(boot_params_t *boot_params);
#endif
#endif // HDMI_H__

View File

@ -1,17 +1,22 @@
/**
* @file menu.h
* @brief Menu Subsystem
* @ingroup menu
* @ingroup menu
*/
#ifndef MENU_H__
#define MENU_H__
#include "boot/boot.h"
/**
* @brief Runs the menu subsystem.
*
* This function initializes and runs the menu subsystem using the provided
* boot parameters.
*
* @param boot_params A pointer to the boot parameters.
*/
void menu_run(boot_params_t *boot_params);
void menu_run (boot_params_t *boot_params);
#endif
#endif // MENU_H__