Format code according to conventions (#15604)
parent
c86baf3ece
commit
25707cad5c
|
@ -77,9 +77,7 @@
|
||||||
#define MSB1 0x80
|
#define MSB1 0x80
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
void adns9800_spi_start(void) {
|
void adns9800_spi_start(void) { spi_start(ADNS9800_CS_PIN, false, ADNS9800_SPI_MODE, ADNS9800_SPI_DIVISOR); }
|
||||||
spi_start(ADNS9800_CS_PIN, false, ADNS9800_SPI_MODE, ADNS9800_SPI_DIVISOR);
|
|
||||||
}
|
|
||||||
|
|
||||||
void adns9800_write(uint8_t reg_addr, uint8_t data) {
|
void adns9800_write(uint8_t reg_addr, uint8_t data) {
|
||||||
adns9800_spi_start();
|
adns9800_spi_start();
|
||||||
|
|
|
@ -77,10 +77,10 @@ typedef struct {
|
||||||
int8_t mdy;
|
int8_t mdy;
|
||||||
} report_pmw3360_t;
|
} report_pmw3360_t;
|
||||||
|
|
||||||
bool pmw3360_init(void);
|
bool pmw3360_init(void);
|
||||||
void pmw3360_upload_firmware(void);
|
void pmw3360_upload_firmware(void);
|
||||||
bool pmw3360_check_signature(void);
|
bool pmw3360_check_signature(void);
|
||||||
uint16_t pmw3360_get_cpi(void);
|
uint16_t pmw3360_get_cpi(void);
|
||||||
void pmw3360_set_cpi(uint16_t cpi);
|
void pmw3360_set_cpi(uint16_t cpi);
|
||||||
/* Reads and clears the current delta values on the sensor */
|
/* Reads and clears the current delta values on the sensor */
|
||||||
report_pmw3360_t pmw3360_read_burst(void);
|
report_pmw3360_t pmw3360_read_burst(void);
|
||||||
|
|
Loading…
Reference in New Issue