CRINSA-team2025 V1
Documentation du Club Robot INSA Rennes 2025
Chargement...
Recherche...
Aucune correspondance
SpeedPowerProfiling.h
1#ifndef _PROFILING_H
2#define _PROFILING_H
3
4#include <Arduino.h>
5#include <PrintfSupport.h>
6
7#define MAX_EVENT_COUNT 20
8
9void PROFILING_START(const char *profile_name);
10void PROFILING_EVENT(const char *event);
11void PROFILING_STOP(void);
12
13#endif // _PROFILING_H