Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
e4b0ace8
Commit
e4b0ace8
authored
6 years ago
by
Gunar Schorcht
Committed by
Schorcht
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
cpu/esp8266: inc ets_task stack size for esp_now
parent
b3906539
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cpu/esp8266/include/cpu_conf.h
+25
-1
25 additions, 1 deletion
cpu/esp8266/include/cpu_conf.h
cpu/esp8266/startup.c
+1
-1
1 addition, 1 deletion
cpu/esp8266/startup.c
with
26 additions
and
2 deletions
cpu/esp8266/include/cpu_conf.h
+
25
−
1
View file @
e4b0ace8
...
...
@@ -47,6 +47,18 @@ extern "C" {
#define THREAD_STACKSIZE_MAIN (3072)
#endif
#ifndef GNRC_PKTDUMP_STACKSIZE
#define GNRC_PKTDUMP_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
#endif
#ifndef ESP_NOW_STACKSIZE
#define ESP_NOW_STACKSIZE (2560)
#endif
#ifndef ETS_THREAD_STACKSIZE
#define ETS_THREAD_STACKSIZE (2048)
#endif
#else
/* MODULE_ESP_SDK_INT_HANDLING */
#ifndef THREAD_EXTRA_STACKSIZE_PRINTF
...
...
@@ -62,6 +74,18 @@ extern "C" {
#define THREAD_STACKSIZE_MAIN (3072)
#endif
#ifndef GNRC_PKTDUMP_STACKSIZE
#define GNRC_PKTDUMP_STACKSIZE (THREAD_STACKSIZE_DEFAULT)
#endif
#ifndef ESP_NOW_STACKSIZE
#define ESP_NOW_STACKSIZE (2560)
#endif
#ifndef ETS_THREAD_STACKSIZE
#define ETS_THREAD_STACKSIZE (1536)
#endif
#endif
/* MODULE_ESP_SDK_INT_HANDLING */
/** @} */
...
...
@@ -82,7 +106,7 @@ extern "C" {
#ifdef __cplusplus
}
#endif
/* CPU_CONF_H */
#endif
#endif
/* CPU_CONF_H */
/** @} */
This diff is collapsed.
Click to expand it.
cpu/esp8266/startup.c
+
1
−
1
View file @
e4b0ace8
...
...
@@ -69,7 +69,7 @@ extern uint8_t _eheap;
#define ETS_TASK_PRIORITY (1)
/* stack for the ETS task */
static
char
ets_task_stack
[
THREAD_STACKSIZE
_DEFAULT
];
static
char
ets_task_stack
[
ETS_
THREAD_STACKSIZE
];
/* ETS task code */
extern
void
*
ets_task_func
(
void
*
arg
);
...
...
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