Files
Joachim 66f9ed9bad testing and benchmarking functions of opencv
- Benchmark measurement tool added
- Tested a bunch of function
	- TODO: See why some function don't give stack memory back!
2020-03-25 22:49:32 +01:00

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