1-Wire bus search algorithm, new C implementation
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Ondřej Hruška cc979602f3
added some includes that should probably be in the header file
6 лет назад
.gitignore code import 6 лет назад
LICENSE Initial commit 6 лет назад
README.md readme 6 лет назад
main.c added some includes that should probably be in the header file 6 лет назад
ow_search.c added checksum support 6 лет назад
ow_search.h added some includes that should probably be in the header file 6 лет назад

README.md

1-Wire search algorithm

This project provides a reimplemented 1-Wire bus search algorithm (used to identify e.g. DS18x20 thermometers on a common open-drain bus).

The algorithm uses no global variables and allows finding a unlimited number of bus devices.

For an example of usage, see main.c.