-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
432806a
commit 2c7813b
Showing
7 changed files
with
111 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# 1 "C:\\Users\\conno\\AppData\\Local\\Temp\\tmpeghszhws" | ||
#include <Arduino.h> | ||
# 1 "C:/Users/conno/Emotiscope/src/EMOTISCOPE_FIRMWARE.ino" | ||
# 14 "C:/Users/conno/Emotiscope/src/EMOTISCOPE_FIRMWARE.ino" | ||
#define SOFTWARE_VERSION_MAJOR ( 1 ) | ||
#define SOFTWARE_VERSION_MINOR ( 0 ) | ||
#define SOFTWARE_VERSION_PATCH ( 0 ) | ||
|
||
|
||
|
||
|
||
|
||
|
||
#include <PsychicHttp.h> | ||
#include <HTTPClient.h> | ||
#include <ESPmDNS.h> | ||
#include <Ticker.h> | ||
#include <DNSServer.h> | ||
#include <Preferences.h> | ||
#include <Update.h> | ||
#include <WiFi.h> | ||
#include <esp_dsp.h> | ||
#include <esp_wifi.h> | ||
|
||
|
||
#include "global_defines.h" | ||
#include "hardware_version.h" | ||
#include "types.h" | ||
#include "profiler.h" | ||
#include "sliders.h" | ||
#include "toggles.h" | ||
#include "menu_toggles.h" | ||
#include "filesystem.h" | ||
#include "configuration.h" | ||
#include "utilities.h" | ||
#include "system.h" | ||
#include "led_driver.h" | ||
#include "leds.h" | ||
#include "touch.h" | ||
#include "indicator.h" | ||
#include "ui.h" | ||
#include "microphone.h" | ||
#include "vu.h" | ||
#include "goertzel.h" | ||
#include "tempo.h" | ||
#include "audio_debug.h" | ||
#include "screensaver.h" | ||
#include "standby.h" | ||
#include "lightshow_modes.h" | ||
#include "commands.h" | ||
#include "wireless.h" | ||
#include "ota.h" | ||
|
||
|
||
#include "cpu_core.h" | ||
#include "gpu_core.h" | ||
#include "web_core.h" | ||
|
||
|
||
#include "notes.h" | ||
void loop(); | ||
void loop_gpu(void *param); | ||
void setup(); | ||
#line 75 "C:/Users/conno/Emotiscope/src/EMOTISCOPE_FIRMWARE.ino" | ||
void loop() { | ||
run_cpu(); | ||
run_web(); | ||
} | ||
|
||
|
||
void loop_gpu(void *param) { | ||
for (;;) { | ||
run_gpu(); | ||
} | ||
} | ||
|
||
|
||
void setup() { | ||
|
||
init_system(); | ||
|
||
|
||
(void)xTaskCreatePinnedToCore(loop_gpu, "loop_gpu", 8192, NULL, 0, NULL, 0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters