Files
ESP-Miner/main/self_test/self_test.h
Skot 2c41cc9255 Fix a couple missed issues from the fix_warnings PR (#393)
* move ADC_init() before start_http_server() because the UI reads the ADC
* split SYSTEM_init() into separate functions. cleaned up nvs init.
* fix my dumb INA260_init() memory leak
* SYSTEM_init_peripherals() cleanup
2024-10-09 12:52:55 -04:00

7 lines
133 B
C

#ifndef SELF_TEST_H_
#define SELF_TEST_H_
void self_test(void * pvParameters);
bool should_test(GlobalState * GLOBAL_STATE);
#endif