Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
5c1c5164
Commit
5c1c5164
authored
Nov 04, 2015
by
Johny Mattsson
Browse files
Fix newly introduced incorrect WDT feeding.
parent
d8c6fe0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/modules/hx711.c
View file @
5c1c5164
...
@@ -36,7 +36,7 @@ static int ICACHE_FLASH_ATTR hx711_read(lua_State* L) {
...
@@ -36,7 +36,7 @@ static int ICACHE_FLASH_ATTR hx711_read(lua_State* L) {
//wait for data ready. or time out.
//wait for data ready. or time out.
//TODO: set pin inturrupt and come back to it. This may take up to 1/10 sec
//TODO: set pin inturrupt and come back to it. This may take up to 1/10 sec
// or maybe just make an async version too and have both available.
// or maybe just make an async version too and have both available.
WRITE_PERI_REG
(
0x60000914
,
0x73
);
//clear WDT... this may take a while.
system_soft_wdt_feed
(
);
//clear WDT... this may take a while.
for
(
i
=
0
;
i
<
HX711_MAX_WAIT
&&
platform_gpio_read
(
data_pin
)
==
1
;
i
++
){
for
(
i
=
0
;
i
<
HX711_MAX_WAIT
&&
platform_gpio_read
(
data_pin
)
==
1
;
i
++
){
asm
(
"nop"
);
asm
(
"nop"
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment