keyboard stuff
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update Doxygen comments for some headers (#20194)

authored by

Ryan and committed by
GitHub
9c3c1592 74c033ea

+25 -18
+2 -2
drivers/lcd/hd44780.h
··· 21 21 #include <stdbool.h> 22 22 23 23 /** 24 - * \defgroup hd44780 24 + * \file 25 25 * 26 - * HD44780 Character LCD Driver 26 + * \defgroup hd44780 HD44780 Character LCD Driver 27 27 * \{ 28 28 */ 29 29
+3 -5
quantum/digitizer.h
··· 13 13 * You should have received a copy of the GNU General Public License 14 14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 15 */ 16 - #pragma once 17 16 18 - #include "quantum.h" 17 + #pragma once 19 18 20 19 #include <stdbool.h> 21 - #include <stdint.h> 22 20 23 21 /** 24 - * \defgroup digitizer 22 + * \file 25 23 * 26 - * HID Digitizer 24 + * defgroup digitizer HID Digitizer 27 25 * \{ 28 26 */ 29 27
+2 -2
quantum/joystick.h
··· 22 22 #include "gpio.h" 23 23 24 24 /** 25 - * \defgroup joystick 25 + * \file 26 26 * 27 - * HID Joystick 27 + * \defgroup joystick HID Joystick 28 28 * \{ 29 29 */ 30 30
+2 -2
quantum/leader.h
··· 5 5 #include <stdint.h> 6 6 7 7 /** 8 - * \defgroup leader 8 + * \file 9 9 * 10 - * Leader Key 10 + * \defgroup leader Leader Key 11 11 * \{ 12 12 */ 13 13
+2 -2
quantum/programmable_button.h
··· 21 21 #include <stdbool.h> 22 22 23 23 /** 24 - * \defgroup programmable_button 24 + * \file 25 25 * 26 - * HID Programmable Buttons 26 + * \defgroup programmable_button HID Programmable Buttons 27 27 * \{ 28 28 */ 29 29
+10 -3
quantum/secure.h
··· 3 3 4 4 #pragma once 5 5 6 - /** \file 6 + /** 7 + * \file 8 + * 9 + * \defgroup secure Secure API 10 + * 11 + * \brief Exposes a set of functionality to act as a virtual padlock for your device 12 + * ...as long as that padlock is made of paper and it's currently raining. 7 13 * 8 - * Exposes a set of functionality to act as a virtual padlock for your device 9 - * ... As long as that padlock is made of paper and its currently raining. 14 + * \{ 10 15 */ 11 16 12 17 #include <stdint.h> ··· 77 82 /** \brief keyboard hook called when changing secure status device 78 83 */ 79 84 bool secure_hook_kb(secure_status_t secure_status); 85 + 86 + /** \} */
+4 -2
quantum/send_string/send_string.h
··· 15 15 */ 16 16 17 17 /** 18 - * \defgroup send_string 18 + * \file 19 19 * 20 - * Send String API. These functions allow you to create macros by typing out sequences of keystrokes. 20 + * \defgroup send_string Send String API 21 + * 22 + * \brief These functions allow you to create macros by typing out sequences of keystrokes. 21 23 * \{ 22 24 */ 23 25