From 7ba096a507871612e91d5cc0d8244313b1a6881e Mon Sep 17 00:00:00 2001 From: "ctcaer@gmail.com" Date: Sun, 28 Apr 2019 00:55:00 +0300 Subject: [PATCH] [hid] notification led - fix misaligned comments --- nx/include/switch/services/hidsys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/services/hidsys.h b/nx/include/switch/services/hidsys.h index 7422d30c..92318f19 100644 --- a/nx/include/switch/services/hidsys.h +++ b/nx/include/switch/services/hidsys.h @@ -21,7 +21,7 @@ typedef struct { /// See also: https://switchbrew.org/wiki/HID_services#NotificationLedPattern /// Only the low 4bits of each used byte in this struct is used. typedef struct { - u8 baseMiniCycleDuration; ///< Mini Cycle Base Duration. Value 0x1-0xF: 12.5ms - 187.5ms. Value 0x0 = 0ms/OFF. + u8 baseMiniCycleDuration; ///< Mini Cycle Base Duration. Value 0x1-0xF: 12.5ms - 187.5ms. Value 0x0 = 0ms/OFF. u8 totalMiniCycles; ///< Number of Mini Cycles + 1. Value 0x0-0xF: 1 - 16 mini cycles. u8 totalFullCycles; ///< Number of Full Cycles. Value 0x1-0xF: 1 - 15 full cycles. Value 0x0 is repeat forever, but if baseMiniCycleDuration is set to 0x0, it does the 1st Mini Cycle with a 12.5ms step duration and then the LED stays on with startIntensity. u8 startIntensity; ///< LED Start Intensity. Value 0x0=0% - 0xF=100%.