Update Doxygen comments for some headers (#20194)
parent
74c033eaf2
commit
9c3c159286
|
@ -21,9 +21,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \defgroup hd44780
|
* \file
|
||||||
*
|
*
|
||||||
* HD44780 Character LCD Driver
|
* \defgroup hd44780 HD44780 Character LCD Driver
|
||||||
* \{
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -13,17 +13,15 @@
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "quantum.h"
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \defgroup digitizer
|
* \file
|
||||||
*
|
*
|
||||||
* HID Digitizer
|
* defgroup digitizer HID Digitizer
|
||||||
* \{
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -22,9 +22,9 @@
|
||||||
#include "gpio.h"
|
#include "gpio.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \defgroup joystick
|
* \file
|
||||||
*
|
*
|
||||||
* HID Joystick
|
* \defgroup joystick HID Joystick
|
||||||
* \{
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,9 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \defgroup leader
|
* \file
|
||||||
*
|
*
|
||||||
* Leader Key
|
* \defgroup leader Leader Key
|
||||||
* \{
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -21,9 +21,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \defgroup programmable_button
|
* \file
|
||||||
*
|
*
|
||||||
* HID Programmable Buttons
|
* \defgroup programmable_button HID Programmable Buttons
|
||||||
* \{
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,15 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
/** \file
|
/**
|
||||||
|
* \file
|
||||||
*
|
*
|
||||||
* Exposes a set of functionality to act as a virtual padlock for your device
|
* \defgroup secure Secure API
|
||||||
* ... As long as that padlock is made of paper and its currently raining.
|
*
|
||||||
|
* \brief Exposes a set of functionality to act as a virtual padlock for your device
|
||||||
|
* ...as long as that padlock is made of paper and it's currently raining.
|
||||||
|
*
|
||||||
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
@ -77,3 +82,5 @@ bool secure_hook_user(secure_status_t secure_status);
|
||||||
/** \brief keyboard hook called when changing secure status device
|
/** \brief keyboard hook called when changing secure status device
|
||||||
*/
|
*/
|
||||||
bool secure_hook_kb(secure_status_t secure_status);
|
bool secure_hook_kb(secure_status_t secure_status);
|
||||||
|
|
||||||
|
/** \} */
|
||||||
|
|
|
@ -15,9 +15,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \defgroup send_string
|
* \file
|
||||||
*
|
*
|
||||||
* Send String API. These functions allow you to create macros by typing out sequences of keystrokes.
|
* \defgroup send_string Send String API
|
||||||
|
*
|
||||||
|
* \brief These functions allow you to create macros by typing out sequences of keystrokes.
|
||||||
* \{
|
* \{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue