1
0
Fork 0
1-Wire bus search algorithm, new C implementation
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Ondřej Hruška cc979602f3
added some includes that should probably be in the header file
6 anos atrás
.gitignore code import 6 anos atrás
LICENSE Initial commit 6 anos atrás
README.md readme 6 anos atrás
main.c added some includes that should probably be in the header file 6 anos atrás
ow_search.c added checksum support 6 anos atrás
ow_search.h added some includes that should probably be in the header file 6 anos atrás

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.