mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-22 12:23:57 +08:00
* use cstring instead of string.h
* use cstdio instead of stdio.h
* remove inttypes.h
* use cstdlib instead of stdlib.h
* use cstdint instead of stdint.h
* #include <cstddef>
* cstdlib
* use cmath
* remove stddef.h
* use cassert
* use csignal
* use ctime
* use cerror
* rebase master
old-commit-hash: c53cb5d570
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);
|
|
};
|