Backing up an unused program in case of future need

Dependencies:   mbed

Committer:
andrewboyson
Date:
Thu Dec 06 11:40:19 2018 +0000
Revision:
8:45a0205a298f
Parent:
6:be97d38e0b01
Backing up

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 6:be97d38e0b01 1 #define ONE_WIRE_RESULT_OK 0
andrewboyson 6:be97d38e0b01 2 #define ONE_WIRE_RESULT_NO_DEVICE_PRESENT 1
andrewboyson 6:be97d38e0b01 3 #define ONE_WIRE_RESULT_NO_DEVICE_PARTICIPATING 2
andrewboyson 6:be97d38e0b01 4 #define ONE_WIRE_RESULT_TIMED_OUT 3
andrewboyson 6:be97d38e0b01 5 #define ONE_WIRE_RESULT_CRC_ERROR 4
andrewboyson 6:be97d38e0b01 6
andrewboyson 6:be97d38e0b01 7 extern int OneWireResult();
andrewboyson 4:e076884ef8bd 8 extern int OneWireInit();
andrewboyson 4:e076884ef8bd 9 extern int OneWireBusy();
andrewboyson 4:e076884ef8bd 10 extern void OneWireExchange(int lenBytesToSend, int lenBytesToRecv, char *pBytesToSend, char *pBytesToRecv, int msToPullUp);
andrewboyson 6:be97d38e0b01 11 extern void OneWireSearch(char command, char* pDeviceRomList, int* pAllDevicesFound);
andrewboyson 4:e076884ef8bd 12 extern int OneWireMain();