0917494a80
* Separate ibutton to its own module, add one_wire to f18 * Move onewire cli to a separate app Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
10 lines
233 B
C
10 lines
233 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <one_wire/one_wire_host.h>
|
|
|
|
bool rw1990_write_v1(OneWireHost* host, const uint8_t* data, size_t data_size);
|
|
|
|
bool rw1990_write_v2(OneWireHost* host, const uint8_t* data, size_t data_size);
|