1-Wire bus search algorithm, new C implementation
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Ondřej Hruška cc979602f3
added some includes that should probably be in the header file
6 år sedan
.gitignore code import 6 år sedan
LICENSE Initial commit 6 år sedan
README.md readme 6 år sedan
main.c added some includes that should probably be in the header file 6 år sedan
ow_search.c added checksum support 6 år sedan
ow_search.h added some includes that should probably be in the header file 6 år sedan

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.