Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
2224f24d
Commit
2224f24d
authored
Jul 04, 2015
by
vowstar
Browse files
Merge branch 'dev096' of
https://github.com/nodemcu/nodemcu-firmware
into dev
parents
638bf7b0
aa710d1f
Changes
1
Show whitespace changes
Inline
Side-by-side
app/modules/rc.c
View file @
2224f24d
...
...
@@ -9,13 +9,13 @@
#define defProtocol 1
#define defRepeat 10
#define defBits 24
void
transmit
(
int
pin
,
int
pulseLen
,
int
nHighPulses
,
int
nLowPulses
)
{
static
void
ICACHE_FLASH_ATTR
transmit
(
int
pin
,
int
pulseLen
,
int
nHighPulses
,
int
nLowPulses
)
{
platform_gpio_write
(
pin
,
1
);
os_delay_us
(
pulseLen
*
nHighPulses
);
platform_gpio_write
(
pin
,
0
);
os_delay_us
(
pulseLen
*
nLowPulses
);
}
//rc.send(
0
,267715,24,185,1) --GPIO, code, bits, pulselen, protocol
//rc.send(
4
,267715,24,185,1
,10
) --GPIO, code, bits, pulselen, protocol
, repeat
static
int
ICACHE_FLASH_ATTR
rc_send
(
lua_State
*
L
)
{
const
uint8_t
pin
=
luaL_checkinteger
(
L
,
1
);
platform_gpio_mode
(
pin
,
PLATFORM_GPIO_OUTPUT
,
PLATFORM_GPIO_FLOAT
);
...
...
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