mirror of
https://github.com/EyeTrackVR/OpenIris.git
synced 2025-11-04 15:39:42 +08:00
* Add pinout and environments for ESP32S3 Xiao Sense boards * Add opi memory_type to fix psram issues * fix: multiple typos or copy paste issues * fix: fix the XIAO ESP32S3 board type * fix: xaio crashing when allocating * fix: xaio crashing when allocating * fix: experiment with qio * fix: add some basic logging * fix: add some more logging * fix: add some more logging * fix: add some more logging * fix: add some more logging * fix: add some more logging * fix: add some more logging * fix: add some more logging * fix: add some more logging * fix: try to increase the stack size for the task * chore: enable wifi * ci(ci-gha); fix github actions failing * ci(ci-gha); fix github actions failing * ci(ci-gh): removing update logic from CI - i editing the docker container itself to be up-to-date * ci(ci-test): testing new gh action matrix format * ci(ci-test): testing new gh action matrix format * ci(ci-test): testing new gh action matrix format * ci(ci-test): testing new gh action matrix format * fix: fix esp32s3 xiao wifi - fix LED pin issue - force newest espressif toolchain - clean up pinout defines - add lots of logging - move strings into wifi handler - upgrade to c++17 * fix: fix esp32s3 xiao wifi - fix syntax error in wifihandler * fix: error handling in camera handler * fix: bug in wifi config saving routine - refactor lib - fix bug in wifi config logic - clean up --------- Co-authored-by: Sebastian Fitt <9294002+Blu3u@users.noreply.github.com> Co-authored-by: DaOfficialWizard <45744329+ZanzyTHEbar@users.noreply.github.com>
21 lines
526 B
C++
21 lines
526 B
C++
#ifndef OPENIRIS_HPP
|
|
#define OPENIRIS_HPP
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <data/config/project_config.hpp>
|
|
#include <io/LEDManager/LEDManager.hpp>
|
|
#include <io/camera/cameraHandler.hpp>
|
|
#include <logo/logo.hpp>
|
|
|
|
#ifndef ETVR_EYE_TRACKER_USB_API
|
|
#include <network/api/webserverHandler.hpp>
|
|
#include <network/mDNS/MDNSManager.hpp>
|
|
#include <network/stream/streamServer.hpp>
|
|
#include <network/wifihandler/wifihandler.hpp>
|
|
#else
|
|
#include <usb/etvr_eye_tracker_usb.hpp>
|
|
#endif // ETVR_EYE_TRACKER_WEB_API
|
|
|
|
#endif // OPENIRIS_HPP
|