Skip to content

Interrupt overhead regression testing (GIT8266O-132) #576

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
dbc52c0
Add a test-case for measuring interrupt overhead. It'll need to be up…
rumpeltux May 4, 2019
64f6fae
Merge commit '8aae2e57645784fc40eaecf03b310850e3e66ea3' into interrup…
rumpeltux May 4, 2019
b08040e
Update interrupt overhead times after platform simplification.
rumpeltux May 4, 2019
e0c7681
Merge commit '402fdef09cc47eafb92005f9e108709e8e3ba36f' into interrup…
rumpeltux May 4, 2019
e20777e
Merge remote-tracking branch 'origin/master' into interrupt-overhead-…
rumpeltux May 4, 2019
ba117e9
Make sure esp8266/test/test_interrupt_overhead.c still works with CON…
rumpeltux May 4, 2019
b195165
Fix includes
rumpeltux May 11, 2019
b40f7bd
Merge commit '1e40a85cecfff864355bff470706e31aacf7f519' into interrup…
rumpeltux Dec 4, 2019
781db66
Merge commit '78cf0dda694102b023015b7673f703d5d2e32ff8' into interrup…
rumpeltux Dec 4, 2019
2d0f8e6
Merge commit '52b46ed00fa8ea71375d634030ebe0c42e492ade' into interrup…
rumpeltux Dec 4, 2019
ab1c85f
Merge commit '896c93c48b5a88828d1a6c9438b58a041100d97d' into interrup…
rumpeltux Dec 4, 2019
b2de69a
Merge commit '73e3a7d4d60f178ed77e3eba96e7d313f686b4b5' into interrup…
rumpeltux Dec 4, 2019
6b241f8
Merge commit '6ada81237e7e75bd1e9628547e360a350e0284ed' into interrup…
rumpeltux Dec 4, 2019
d63245f
Update regression test times.
rumpeltux Dec 4, 2019
0a16727
Merge commit 'b8771d636387e93913717d7054021240e79a4230' into interrup…
rumpeltux Dec 4, 2019
49c094e
Optimized code working again.
rumpeltux Dec 4, 2019
c508f11
Merge commit '0769fb46dcecdd681ac6957758efd9f7d5f54382' into interrup…
rumpeltux Dec 4, 2019
452e18a
Merge commit '63ba83f1198b8226518c9c81014dfdd0f953e503' into interrup…
rumpeltux Dec 4, 2019
6ed09fb
Merge commit 'e00c0c2ead026481f51754afb97dbb24c069f870' into interrup…
rumpeltux Dec 4, 2019
7c43551
Major regession in interrupt overhead.
rumpeltux Dec 4, 2019
fc9fdd4
Merge commit 'd8d355bbdfa1363d43fa4f25d22de9d5b6f9f6a4' into interrup…
rumpeltux Dec 4, 2019
49ded25
regession averted in interrupt overhead.
rumpeltux Dec 4, 2019
fa34c25
Merge commit 'eeb508d83f4b11c14b1df6d6bac654a6d8df5290' into interrup…
rumpeltux Dec 4, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions components/esp8266/include/esp8266/eagle_soc.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@
#ifndef _EAGLE_SOC_H_
#define _EAGLE_SOC_H_

#ifndef __ASSEMBLER__
#include "sdkconfig.h"
#include <stdint.h>
#include <stddef.h>
#include "driver/soc.h"
#endif

/* IO definitions (access restrictions to peripheral registers) */

Expand Down
2 changes: 0 additions & 2 deletions components/esp8266/source/esp_err_to_name.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
//Do not edit this file because it is autogenerated by gen_esp_err_to_name.py

#include <string.h>
#if __has_include("esp_err.h")
#include "esp_err.h"
#endif
#if __has_include("esp_http_client.h")
#include "esp_http_client.h"
#endif
Expand Down