Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dos
flow3r firmware
Commits
eebcd8f7
Commit
eebcd8f7
authored
1 year ago
by
q3k
Browse files
Options
Downloads
Patches
Plain Diff
usermodule/hardware: add freertos_sleep
parent
3ca7c081
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
usermodule/mp_hardware.c
+11
-1
11 additions, 1 deletion
usermodule/mp_hardware.c
with
11 additions
and
1 deletion
usermodule/mp_hardware.c
+
11
−
1
View file @
eebcd8f7
...
...
@@ -182,7 +182,16 @@ STATIC mp_obj_t mp_get_ctx(size_t n_args, const mp_obj_t *args) {
mp_obj_t
mp_ctx
=
mp_ctx_from_ctx
(
ctx
);
return
mp_ctx
;
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN
(
mp_get_ctx_obj
,
0
,
0
,
mp_get_ctx
);
STATIC
MP_DEFINE_CONST_FUN_OBJ_0
(
mp_get_ctx_obj
,
mp_get_ctx
);
STATIC
mp_obj_t
mp_freertos_sleep
(
mp_obj_t
ms_in
)
{
uint32_t
ms
=
mp_obj_get_int
(
ms_in
);
MP_THREAD_GIL_EXIT
();
vTaskDelay
(
ms
/
portTICK_PERIOD_MS
);
MP_THREAD_GIL_ENTER
();
return
mp_const_none
;
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_1
(
mp_freertos_sleep_obj
,
mp_freertos_sleep
);
STATIC
const
mp_rom_map_elem_t
mp_module_hardware_globals_table
[]
=
{
{
MP_ROM_QSTR
(
MP_QSTR___name__
),
MP_ROM_QSTR
(
MP_QSTR_badge_audio
)
},
...
...
@@ -209,6 +218,7 @@ STATIC const mp_rom_map_elem_t mp_module_hardware_globals_table[] = {
{
MP_ROM_QSTR
(
MP_QSTR_count_sources
),
MP_ROM_PTR
(
&
mp_count_sources_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_dump_all_sources
),
MP_ROM_PTR
(
&
mp_dump_all_sources_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_display_update
),
MP_ROM_PTR
(
&
mp_display_update_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_freertos_sleep
),
MP_ROM_PTR
(
&
mp_freertos_sleep_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_display_set_backlight
),
MP_ROM_PTR
(
&
mp_display_set_backlight_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_version
),
MP_ROM_PTR
(
&
mp_version_obj
)
},
{
MP_ROM_QSTR
(
MP_QSTR_get_ctx
),
MP_ROM_PTR
(
&
mp_get_ctx_obj
)
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment