1-Wire bus search algorithm, new C implementation
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Ondřej Hruška cc979602f3
added some includes that should probably be in the header file
před 6 roky
.gitignore code import před 6 roky
LICENSE Initial commit před 6 roky
README.md readme před 6 roky
main.c added some includes that should probably be in the header file před 6 roky
ow_search.c added checksum support před 6 roky
ow_search.h added some includes that should probably be in the header file před 6 roky

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.