diff options
author | QMK Bot <hello@qmk.fm> | 2022-01-02 00:11:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-02 00:11:49 -0800 |
commit | c32a329583c9ed0a14cff1e6ae9ac7cdc1e9d202 (patch) | |
tree | d66ad032d8e3353b4e4dfd93a803a19b432c5322 | |
parent | 668e6b8e92207e1c676e52b42b1f221cb236551a (diff) |
Format code according to conventions (#15705)
-rw-r--r-- | drivers/sensors/pmw3360.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sensors/pmw3360.c b/drivers/sensors/pmw3360.c index 9e3aeaa468..ad0a724ee4 100644 --- a/drivers/sensors/pmw3360.c +++ b/drivers/sensors/pmw3360.c @@ -198,7 +198,7 @@ bool pmw3360_init(void) { void pmw3360_upload_firmware(void) { // Datasheet claims we need to disable REST mode first, but during startup // it's already disabled and we're not turning it on ... - //pmw3360_write(REG_Config2, 0x00); // disable REST mode + // pmw3360_write(REG_Config2, 0x00); // disable REST mode pmw3360_write(REG_SROM_Enable, 0x1d); wait_ms(10); |