- onewire: модуль для отправик комманд в DS18B20 - ds18b20_driver: модуль для отправик комманд в DS18B20 - dallas_tools: модуль для общения с DS18B20
20 lines
756 B
C
20 lines
756 B
C
/**
|
|
******************************************************************************
|
|
* @file ow_port.h
|
|
* @brief This file includes the driver for port for OneWire purposes
|
|
******************************************************************************
|
|
*/
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef ONEWIRE_PORT_H
|
|
#define ONEWIRE_PORT_H
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "stm32f1xx_hal.h"
|
|
#include "dwt.h"
|
|
|
|
/* OneWire Timings -----------------------------------------------------------*/
|
|
#define OneWireDelay_uw(_us_) DwtDelay_us(_us_)
|
|
/* Common Register -----------------------------------------------------------*/
|
|
#endif /* ONEWIRE_PORT_H */
|