mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 11:33:32 +08:00
[bsp] [stm32f10x] fix watchdog control set timeout argument bug.
This commit is contained in:
parent
24fb0a3656
commit
de17adf56c
@ -27,7 +27,7 @@ static rt_err_t stm32f1_wdg_control(rt_watchdog_t *wdt, int cmd, void *arg)
|
|||||||
switch(cmd)
|
switch(cmd)
|
||||||
{
|
{
|
||||||
case RT_DEVICE_CTRL_WDT_SET_TIMEOUT:
|
case RT_DEVICE_CTRL_WDT_SET_TIMEOUT:
|
||||||
timeout_ms = (rt_uint32_t) arg;
|
timeout_ms = *((rt_uint32_t*) arg);
|
||||||
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
|
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
|
||||||
if(timeout_ms >= 13107)
|
if(timeout_ms >= 13107)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user