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.
92 lines
2.3 KiB
92 lines
2.3 KiB
//
|
|
// Created by MightyPork on 2018/02/01.
|
|
//
|
|
|
|
#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 one romcode */
|
|
typedef uint8_t ow_romcode_t[8];
|
|
|
|
/** Get a bit from a romcode */
|
|
#define ow_code_getbit(code, index) (bool)((code)[(index) / 8] & (1 << ((index) % 8)))
|
|
/** Set a bit to 1 in a romcode */
|
|
#define ow_code_setbit(code, index) ((code)[(index) / 8] |= (1 << ((index) % 8)))
|
|
|
|
/**
|
|
* 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
|
|
|