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.
29 lines
426 B
29 lines
426 B
// Expose structure for stack-based (static) allocation.
|
|
|
|
#ifndef DS18B20_STATIC_H
|
|
#define DS18B20_STATIC_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "ds18b20.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct _DS18B20_Info
|
|
{
|
|
bool init;
|
|
bool use_crc;
|
|
OneWireBus * bus;
|
|
uint64_t rom_code;
|
|
};
|
|
|
|
typedef struct _DS18B20_Info DS18B20_Info_Static;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // DS18B20_STATIC_H
|
|
|