mirror of
https://github.com/daeken/Zookeeper.git
synced 2025-04-02 10:52:54 -04:00
10 lines
212 B
C++
10 lines
212 B
C++
#pragma once
|
|
#include "Zookeeper.hpp"
|
|
|
|
class Smbus : public Device {
|
|
public:
|
|
Smbus();
|
|
|
|
void readPci(uint32_t reg, void *buffer, uint32_t length);
|
|
void writePci(uint32_t reg, void *buffer, uint32_t length);
|
|
};
|