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.
12 lines
269 B
12 lines
269 B
4 months ago
|
#ifndef __POWER_DISTRIBUTION_H__
|
||
|
#define __POWER_DISTRIBUTION_H__
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void port_status_update(uint8_t port, bool isAttched);
|
||
|
uint8_t port_all_attched(void);
|
||
|
void power_distribution_run(void);
|
||
|
uint8_t port_c1_attched(void);
|
||
|
|
||
|
#endif
|