Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
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
Container registry
Model registry
Operate
Environments
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
99b14593
Commit
99b14593
authored
9 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
esp8266/xtirq: Add xtirq.h for controlling xtensa irqs.
parent
7e809b4b
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
esp8266/xtirq.h
+60
-0
60 additions, 0 deletions
esp8266/xtirq.h
with
60 additions
and
0 deletions
esp8266/xtirq.h
0 → 100644
+
60
−
0
View file @
99b14593
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2016 Damien P. George
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef __MICROPY_INCLUDED_ESP8266_XTIRQ_H__
#define __MICROPY_INCLUDED_ESP8266_XTIRQ_H__
#include
<stdint.h>
// returns the value of "intlevel" from the PS register
static
inline
uint32_t
query_irq
(
void
)
{
uint32_t
ps
;
__asm__
volatile
(
"rsr %0, ps"
:
"=a"
(
ps
));
return
ps
&
0xf
;
}
// irqs with a priority value lower or equal to "intlevel" will be disabled
// "intlevel" should be between 0 and 15 inclusive, and should be an integer
static
inline
uint32_t
raise_irq_pri
(
uint32_t
intlevel
)
{
uint32_t
old_ps
;
__asm__
volatile
(
"rsil %0, %1"
:
"=a"
(
old_ps
)
:
"I"
(
intlevel
));
return
old_ps
;
}
// "ps" should be the value returned from raise_irq_pri
static
inline
void
restore_irq_pri
(
uint32_t
ps
)
{
__asm__
volatile
(
"wsr %0, ps; rsync"
::
"a"
(
ps
));
}
static
inline
uint32_t
disable_irq
(
void
)
{
return
raise_irq_pri
(
15
);
}
static
inline
void
enable_irq
(
uint32_t
irq_state
)
{
restore_irq_pri
(
irq_state
);
}
#endif // __MICROPY_INCLUDED_ESP8266_XTIRQ_H__
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