]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - tmk_core/common/led.h
Add sidebar for ZH (#4533)
[qmk_firmware.git] / tmk_core / common / led.h
index 402a247b9a45ba76f800e6cdc1ca45ab88d9e436..c16305129b9fca290bb0a31b8902c746d60de474 100644 (file)
@@ -19,6 +19,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #define LED_H
 #include "stdint.h"
 
+/* FIXME: Add doxygen comments here. */
 
 /* keyboard LEDs */
 #define USB_LED_NUM_LOCK                0
@@ -28,6 +29,16 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #define USB_LED_KANA                    4
 
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 void led_set(uint8_t usb_led);
 
+void led_init_ports(void);
+
+#ifdef __cplusplus
+}
+#endif
+
 #endif