-
-
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
b9b981b
commit add451a
Showing
5 changed files
with
94 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# 1 "C:\\Users\\conno\\AppData\\Local\\Temp\\tmp1coerdz4" | ||
#include <Arduino.h> | ||
# 1 "C:/Users/conno/Emotiscope/src/EMOTISCOPE_FIRMWARE.ino" | ||
# 55 "C:/Users/conno/Emotiscope/src/EMOTISCOPE_FIRMWARE.ino" | ||
#define SOFTWARE_VERSION_MAJOR ( 1 ) | ||
#define SOFTWARE_VERSION_MINOR ( 1 ) | ||
#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 "menu_dropdowns.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 "light_modes.h" | ||
#include "commands.h" | ||
#include "wireless.h" | ||
#include "ota.h" | ||
|
||
|
||
#include "cpu_core.h" | ||
#include "gpu_core.h" | ||
#include "web_core.h" | ||
# 119 "C:/Users/conno/Emotiscope/src/EMOTISCOPE_FIRMWARE.ino" | ||
void loop(); | ||
void loop_gpu(void *param); | ||
void setup(); | ||
#line 119 "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", 4096, 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ void run_cpu() { | |
|
||
read_touch(); | ||
|
||
//check_serial(); | ||
check_serial(); | ||
|
||
check_boot_button(); | ||
|
||
|
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