* Only valid if "id" is not zero.
         */
        bool fragmented_hires;
+       /*
+        * True if the pen reports tilt in bytes at offset 10 (X) and 11 (Y),
+        * and the Y tilt direction is flipped.
+        * Only valid if "id" is not zero.
+        */
+       bool tilt_y_flipped;
 };
 
 /*
                ".pen.id = %u\n"                    \
                ".pen.inrange = %s\n"               \
                ".pen.fragmented_hires = %s\n"      \
+               ".pen.tilt_y_flipped = %s\n"        \
                ".frame.desc_ptr = %p\n"            \
                ".frame.desc_size = %u\n"           \
                ".frame.id = %u\n"                  \
                (_params)->pen.id,                                          \
                uclogic_params_pen_inrange_to_str((_params)->pen.inrange),  \
                ((_params)->pen.fragmented_hires ? "true" : "false"),       \
+               ((_params)->pen.tilt_y_flipped ? "true" : "false"),         \
                (_params)->frame.desc_ptr,                                  \
                (_params)->frame.desc_size,                                 \
                (_params)->frame.id,                                        \
 
        0x27, UCLOGIC_RDESC_PEN_PH(PRESSURE_LM),
                                /*          Logical Maximum (PLACEHOLDER),  */
        0x81, 0x02,             /*          Input (Variable),               */
-       0x81, 0x03,             /*          Input (Constant, Variable),     */
+       0x54,                   /*          Unit Exponent (0),              */
+       0x65, 0x14,             /*          Unit (Degrees),                 */
+       0x35, 0xC4,             /*          Physical Minimum (-60),         */
+       0x45, 0x3C,             /*          Physical Maximum (60),          */
+       0x15, 0xC4,             /*          Logical Minimum (-60),          */
+       0x25, 0x3C,             /*          Logical Maximum (60),           */
+       0x75, 0x08,             /*          Report Size (8),                */
+       0x95, 0x02,             /*          Report Count (2),               */
+       0x09, 0x3D,             /*          Usage (X Tilt),                 */
+       0x09, 0x3E,             /*          Usage (Y Tilt),                 */
+       0x81, 0x02,             /*          Input (Variable),               */
        0xC0,                   /*      End Collection,                     */
        0xC0                    /*  End Collection                          */
 };