From 4ade159586610782040da483144578ad1fd44486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Mon, 7 Dec 2020 19:05:48 +0100 Subject: [PATCH] onewire_master: set project specific config --- lib/onewire_master.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/onewire_master.c b/lib/onewire_master.c index b00d5e1..27cbd1f 100644 --- a/lib/onewire_master.c +++ b/lib/onewire_master.c @@ -29,13 +29,13 @@ * @note external pull-up resistor on pin is required (< 5 kOhm) * @{ */ -#define ONEWIRE_MASTER_PIN PC9 /**< GPIO pin */ +#define ONEWIRE_MASTER_PIN PB8 /**< GPIO pin */ /** @} */ /** @defgroup onewire_master_timer timer used to measure 1-wire signal timing * @{ */ -#define ONEWIRE_MASTER_TIMER 5 /**< timer ID */ +#define ONEWIRE_MASTER_TIMER 3 /**< timer ID */ /** @} */ /** set if the timer ISR should be set in the interrupt table instead of the vector table