You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.4 KiB
101 lines
2.4 KiB
//
|
|
// Created by MightyPork on 2018/02/01
|
|
// MIT license
|
|
//
|
|
|
|
#ifndef OW_SEARCH_H
|
|
#define OW_SEARCH_H
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
// External API functions for interfacing the bus
|
|
// Customize as needed (and also update calls in the search function)
|
|
|
|
/**
|
|
* Reset the 1-wire bus
|
|
*
|
|
* @return presence pulse received
|
|
*/
|
|
extern bool ow_reset(void);
|
|
|
|
/**
|
|
* Write a byte to the bus
|
|
*
|
|
* @param[in] value byte value
|
|
*/
|
|
extern void ow_write_u8(uint8_t value);
|
|
/**
|
|
* Write a bit to the 1-wire bus
|
|
*
|
|
* @param[in] value bit value
|
|
*/
|
|
extern void ow_write_bit(bool value);
|
|
|
|
/**
|
|
* Read a bit from the 1-wire bus
|
|
*
|
|
* @return bit value
|
|
*/
|
|
extern bool ow_read_bit(void);
|
|
|
|
// --------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Data type holding a romcode
|
|
*/
|
|
typedef uint8_t ow_romcode_t[8];
|
|
|
|
/**
|
|
* Get a single bit from a romcode
|
|
*/
|
|
#define ow_code_getbit(code, index) (bool)((code)[(index) >> 3] & (1 << ((index) & 7)))
|
|
|
|
/**
|
|
* Convert to unsigned 64-bit integer
|
|
* (works only on little-endian systems - eg. OK on x86/x86_64, not on PowerPC)
|
|
*/
|
|
#define ow_romcode_to_u64(code) (*((uint64_t *) (void *)(code)))
|
|
|
|
/**
|
|
* States of the search algorithm
|
|
*/
|
|
enum ow_search_result {
|
|
OW_SEARCH_DONE = 0,
|
|
OW_SEARCH_MORE = 1,
|
|
OW_SEARCH_FAILED = 2,
|
|
};
|
|
|
|
/**
|
|
* Internal state of the search algorithm.
|
|
* Check status to see if more remain to be read or an error occurred.
|
|
*/
|
|
struct ow_search_state {
|
|
int8_t prev_last_fork;
|
|
ow_romcode_t prev_code;
|
|
uint8_t command;
|
|
enum ow_search_result status;
|
|
bool first;
|
|
};
|
|
|
|
/**
|
|
* Init the state search struct
|
|
*
|
|
* @param[out] state - inited struct
|
|
* @param[in] command - command to send for requesting the search (e.g. SEARCH_ROM)
|
|
*/
|
|
void ow_search_init(struct ow_search_state *state, uint8_t command);
|
|
|
|
/**
|
|
* Perform a search of the 1-wire bus, with a state struct pre-inited
|
|
* using ow_search_init().
|
|
*
|
|
* Romcodes are stored in the byte arrays in a numerically ascending order.
|
|
*
|
|
* @param[in,out] state - search state, used for multiple calls with limited buffer size
|
|
* @param[out] codes - buffer for found romcodes
|
|
* @param[in] capacity - buffer capacity
|
|
* @return number of romcodes found. Search status is stored in state->status
|
|
*/
|
|
uint16_t ow_search_run(struct ow_search_state *state, ow_romcode_t *codes, uint16_t capacity);
|
|
|
|
#endif //OW_SEARCH_H
|
|
|