Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
c2070d77
Commit
c2070d77
authored
Aug 07, 2016
by
Paul Sokolovsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
esp8266/modmachine: Implement idle() function.
parent
15633880
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
esp8266/modmachine.c
esp8266/modmachine.c
+7
-0
No files found.
esp8266/modmachine.c
View file @
c2070d77
...
...
@@ -82,6 +82,12 @@ STATIC mp_obj_t machine_unique_id(void) {
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_0
(
machine_unique_id_obj
,
machine_unique_id
);
STATIC
mp_obj_t
machine_idle
(
void
)
{
asm
(
"waiti 0"
);
return
mp_const_none
;
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_0
(
machine_idle_obj
,
machine_idle
);
STATIC
mp_obj_t
machine_deepsleep
(
void
)
{
// default to sleep forever
uint32_t
sleep_us
=
0
;
...
...
@@ -222,6 +228,7 @@ STATIC const mp_rom_map_elem_t machine_module_globals_table[] = {
{
MP_ROM_QSTR
(
MP_QSTR_reset
),
MP_ROM_PTR
(
&
machine_reset_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_reset_cause
),
MP_ROM_PTR
(
&
machine_reset_cause_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_unique_id
),
MP_ROM_PTR
(
&
machine_unique_id_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_idle
),
MP_ROM_PTR
(
&
machine_idle_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_deepsleep
),
MP_ROM_PTR
(
&
machine_deepsleep_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_disable_irq
),
MP_ROM_PTR
(
&
machine_disable_irq_obj
)
},
...
...
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