mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-06 18:24:38 +08:00

- Benchmark measurement tool added - Tested a bunch of function - TODO: See why some function don't give stack memory back!
21 lines
345 B
C++
21 lines
345 B
C++
//
|
|
// Created by joachim on 24.03.20.
|
|
//
|
|
|
|
#ifndef SYSTEM_HPP
|
|
#define SYSTEM_HPP
|
|
|
|
// Initialize the SPIFFS
|
|
esp_err_t init_spiffs();
|
|
|
|
// Display cpu and memory info
|
|
void disp_mem_infos();
|
|
|
|
// Holds the task for a given amount of msec
|
|
void wait_msec(uint16_t v);
|
|
|
|
// Holds the task for a full second
|
|
void wait_sec(uint16_t v);
|
|
|
|
#endif //SYSTEM_HPP
|