1
0
mirror of https://github.com/skot/ESP-Miner.git synced 2025-04-02 08:58:26 +02:00
2024-06-07 14:36:15 +02:00

11 lines
261 B
C

#ifndef VCORE_H_
#define VCORE_H_
#include "global_state.h"
void VCORE_init(GlobalState * global_state);
bool VCORE_set_voltage(float core_voltage, GlobalState * global_state);
uint16_t VCORE_get_voltage_mv(GlobalState * global_state);
#endif /* VCORE_H_ */