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!
This commit is contained in:
Joachim
2020-03-25 22:49:32 +01:00
parent 7742d416d4
commit 66f9ed9bad
9 changed files with 584 additions and 187 deletions

View File

@ -0,0 +1,20 @@
//
// 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