| 177 | } |
| 178 | |
| 179 | void Gopher::handleDisableButton() |
| 180 | { |
| 181 | //Select + Start will disable. |
| 182 | setXboxClickState(CONFIG_DISABLE); |
| 183 | if (_xboxClickIsDown[CONFIG_DISABLE]) |
| 184 | { |
| 185 | _disabled = !_disabled; |
| 186 | |
| 187 | if (_disabled) { |
| 188 | pulseVibrate(400, 10000, 10000); |
| 189 | } |
| 190 | else { |
| 191 | pulseVibrate(400, 65000, 65000); |
| 192 | } |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | void Gopher::handleVibrationButton() |
| 197 | { |
nothing calls this directly
no outgoing calls
no test coverage detected