Mercurial > ~darius > hgwebdir.cgi > stm32temp
diff 1wire-config.h @ 86:345a42f6151b
Catch up with change to new board
author | Daniel O'Connor <darius@dons.net.au> |
---|---|
date | Thu, 12 Mar 2015 23:22:35 +1030 |
parents | 38869c474104 |
children |
line wrap: on
line diff
--- a/1wire-config.h Thu Mar 12 23:22:11 2015 +1030 +++ b/1wire-config.h Thu Mar 12 23:22:35 2015 +1030 @@ -49,25 +49,25 @@ #define OWSETREAD() do { \ GPIO_InitTypeDef GPIO_InitStructure; \ \ - GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; \ + GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; \ GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; \ GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; \ - GPIO_Init(GPIOE, &GPIO_InitStructure); \ + GPIO_Init(GPIOC, &GPIO_InitStructure); \ } while (0) /* Read the 1-wire bus, non-inverting logic */ -#define OWREADBUS() (GPIO_ReadInputDataBit(GPIOE, GPIO_Pin_3) ? 1 : 0) +#define OWREADBUS() (GPIO_ReadInputDataBit(GPIOC, GPIO_Pin_0) ? 1 : 0) /* Set the 1-wire bus to 0 */ #define OWSETBUSLOW() do { \ GPIO_InitTypeDef GPIO_InitStructure; \ - GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; \ + GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; \ GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; \ GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; \ - GPIO_Init(GPIOE, &GPIO_InitStructure); \ - GPIO_ResetBits(GPIOE, GPIO_Pin_3); \ + GPIO_Init(GPIOC, &GPIO_InitStructure); \ + GPIO_ResetBits(GPIOC, GPIO_Pin_0); \ } while (0) /* Set the 1-wire bus to 1 @@ -75,10 +75,10 @@ */ #define OWSETBUSHIGH() do { \ GPIO_InitTypeDef GPIO_InitStructure; \ - GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; \ + GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; \ GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; \ GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; \ - GPIO_Init(GPIOE, &GPIO_InitStructure); \ + GPIO_Init(GPIOC, &GPIO_InitStructure); \ } while (0) #define OWDELAY_A delay(6) /* 6 usec */