Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating heating
1-wire-device.h@0:b4b170ce93a4, 2019-04-25 (annotated)
- Committer:
- andrewboyson
- Date:
- Thu Apr 25 14:44:25 2019 +0000
- Revision:
- 0:b4b170ce93a4
Created
Who changed what in which revision?
User | Revision | Line number | New 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); |