You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
236 B
15 lines
236 B
3 years ago
|
/**
|
||
|
* High voltage
|
||
|
*/
|
||
|
|
||
|
#ifndef CPROJ_HIGH_VOLTAGE_H
|
||
|
#define CPROJ_HIGH_VOLTAGE_H
|
||
|
|
||
|
/// Init HV source. Requires interrupts enabled!
|
||
|
void init_high_voltage();
|
||
|
|
||
|
/// Disable the HV source
|
||
|
void hv_disable();
|
||
|
|
||
|
#endif //CPROJ_HIGH_VOLTAGE_H
|