macnocker/tc.h

15 lines
214 B
C
Raw Normal View History

2017-11-12 09:07:28 +01:00
#ifndef _TC_H
#define _TC_H
2018-04-02 14:10:33 +02:00
#include <stdint.h>
2017-11-12 09:07:28 +01:00
2018-04-02 14:10:33 +02:00
void tc_start();
2017-11-12 09:07:28 +01:00
2018-04-02 14:10:33 +02:00
void tc_stop();
2017-11-12 09:07:28 +01:00
2018-04-02 22:11:07 +02:00
void tc_allow_mac(const uint8_t mac[], uint8_t prio);
2017-11-12 09:07:28 +01:00
2018-04-02 22:11:07 +02:00
void tc_disallow_mac(const uint8_t mac[], uint8_t prio);
2017-11-12 09:07:28 +01:00
#endif // _TC_H