blob: 84a56cf0c16d4d07f856cda4ce737145d7e49258 (
plain)
1
2
3
4
5
6
|
#pragma once
#include "error.h"
bool bus_read_write( uint8_t dev, uint8_t registry, uint8_t* buffer, int len, bool assume_echo );
bool bus_write( uint8_t dev, uint8_t registry, const uint8_t* buffer, int len, bool assume_echo );
|