Andrew Boyson / 1-wire

Dependents:   oldheating heating

Committer:
andrewboyson
Date:
Thu Apr 25 14:44:25 2019 +0000
Revision:
0:b4b170ce93a4
Created

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:b4b170ce93a4 1 #define DEVICE_MAX 8
andrewboyson 0:b4b170ce93a4 2
andrewboyson 0:b4b170ce93a4 3 #define DEVICE_ADDRESS_STRING_LENGTH 24
andrewboyson 0:b4b170ce93a4 4
andrewboyson 0:b4b170ce93a4 5 extern int DeviceCount;
andrewboyson 0:b4b170ce93a4 6 extern char DeviceList[];
andrewboyson 0:b4b170ce93a4 7 extern void DeviceAddressToString(char* pAddress, char* buffer);
andrewboyson 0:b4b170ce93a4 8 extern void DeviceParseAddress(char* pText, char *pAddress);
andrewboyson 0:b4b170ce93a4 9
andrewboyson 0:b4b170ce93a4 10 extern int DeviceScanMs;
andrewboyson 0:b4b170ce93a4 11 extern bool DeviceBusy(void);
andrewboyson 0:b4b170ce93a4 12 extern void DeviceInit(void);
andrewboyson 0:b4b170ce93a4 13 extern int DeviceMain(void);