Star Citizen recently added the ability to have an analog axis as a space brake (it fires thrusters to counter your current motion). I have a Kosmosima Pro, and it occurred to me that it would be good to use the A1 thumbstick as an analog brake, so I can feather the ship's speed with my thumb, as if I was pushing a tiny little brake pedal. The problem is, when the thumbstick is centered the axis value is 32767, not zero (I basically need to halve the range of the thumbstick axis, so that zero is when the thumbstick is centered and 65535 when the thumbstick is fully deflected). After some experimentation I got it working, but I wanted to ask the experts here if what I did is a good way of doing it, or whether I'm exploiting a bug and my analog brake is going to go away when I next flash my stick

What I did was very simple: on VkbDevCFG, under Profile/Axes/Logical Axes I unchecked Cn for the Rot Y axis and then recalibrated the stick. Now when the A1 thumbstick is in its idle position in the center, in the tester RotY registers as 0 and when I push it up with my thumb the value increases until it gets to 65535. When I relax my thumb, the thumbstick returns to center and the value gets back down to 0. Pulling the thumbstick back from center has no effect, but I don't care about that - I'm going to be using the thumbstick as a tiny brake pedal. This is exactly the behavior I want, but am I doing it "right"?
Thanks.