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
GitLab 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
07744832
Commit
07744832
authored
9 years ago
by
Damien George
Committed by
Paul Sokolovsky
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
esp8266/etshal.h: More prototypes of ESP8266 SDK/BootROM functions.
parent
26f0616e
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
esp8266/esp_mphal.h
+0
-3
0 additions, 3 deletions
esp8266/esp_mphal.h
esp8266/etshal.h
+7
-2
7 additions, 2 deletions
esp8266/etshal.h
with
7 additions
and
5 deletions
esp8266/esp_mphal.h
+
0
−
3
View file @
07744832
...
...
@@ -27,9 +27,6 @@
#ifndef _INCLUDED_MPHAL_H_
#define _INCLUDED_MPHAL_H_
// SDK functions not declared in SDK itself
void
ets_isr_mask
(
unsigned
);
void
mp_hal_init
(
void
);
void
mp_hal_rtc_init
(
void
);
void
mp_hal_feed_watchdog
(
void
);
...
...
This diff is collapsed.
Click to expand it.
esp8266/etshal.h
+
7
−
2
View file @
07744832
...
...
@@ -3,10 +3,15 @@
#include
<os_type.h>
void
ets_isr_unmask
();
void
ets_delay_us
();
void
ets_intr_lock
(
void
);
void
ets_intr_unlock
(
void
);
void
ets_isr_mask
(
uint32_t
mask
);
void
ets_isr_unmask
(
uint32_t
mask
);
void
ets_isr_attach
(
int
irq_no
,
void
(
*
handler
)(
void
*
),
void
*
arg
);
void
ets_install_putc1
();
void
ets_isr_attach
();
void
uart_div_modify
();
void
ets_set_idle_cb
(
void
(
*
handler
)(
void
*
),
void
*
arg
);
void
ets_timer_arm_new
(
os_timer_t
*
tim
,
uint32_t
millis
,
bool
repeat
,
bool
is_milli_timer
);
void
ets_timer_setfn
(
os_timer_t
*
tim
,
ETSTimerFunc
callback
,
void
*
cb_data
);
...
...
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