mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 22:23:56 +08:00
* Merge common/ and selfdrive/common
* fix that
* fix version
* fix unit tests
old-commit-hash: cb8885cffb
18 lines
341 B
C++
18 lines
341 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include <sys/types.h>
|
|
|
|
class I2CBus {
|
|
private:
|
|
int i2c_fd;
|
|
|
|
public:
|
|
I2CBus(uint8_t bus_id);
|
|
~I2CBus();
|
|
|
|
int read_register(uint8_t device_address, uint register_address, uint8_t *buffer, uint8_t len);
|
|
int set_register(uint8_t device_address, uint register_address, uint8_t data);
|
|
};
|