zephyr/drivers/watchdog/wdt_wwdg_stm32.h
Tomasz Bursztyka 97326c0445 device: Fix structure attributes access
Since struct devconfig was merged earlier into struct device, let's fix
accessing config_info, name, ... attributes everywhere via:

grep -rlZ 'dev->config->' | xargs -0 sed -i 's/dev->config->/dev->/g'

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
2020-05-08 23:07:44 +02:00

48 lines
1.1 KiB
C

/*
* Copyright (c) 2019 Centaur Analytics, Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_DRIVERS_WATCHDOG_WWDG_STM32_H_
#define ZEPHYR_DRIVERS_WATCHDOG_WWDG_STM32_H_
#include <zephyr/types.h>
#include <drivers/clock_control/stm32_clock_control.h>
#include <drivers/clock_control.h>
/**
* @brief Driver for System Window Watchdog (WWDG) for STM32 MCUs
*
* The driver targets all STM32 SoCs. For details please refer to
* an appropriate reference manual and look for chapter called:
*
* System window watchdog (WWDG)
*
*/
/* driver configuration */
struct wwdg_stm32_config {
struct stm32_pclken pclken;
WWDG_TypeDef *Instance;
};
/* driver data */
struct wwdg_stm32_data {
/* WWDG reset counter */
u8_t counter;
/* WWDG user defined callback on EWI */
wdt_callback_t callback;
};
#define WWDG_STM32_CFG(dev) \
((const struct wwdg_stm32_config *const)(dev)->config_info)
#define WWDG_STM32_DATA(dev) \
((struct wwdg_stm32_data *const)(dev)->driver_data)
#define WWDG_STM32_STRUCT(dev) \
((WWDG_TypeDef *)(WWDG_STM32_CFG(dev))->Instance)
#endif /* ZEPHYR_DRIVERS_WATCHDOG_WWDG_STM32_H_ */