SingingCat 0
application
addressing.h
1#ifndef INCLUDE_ADDRESSING_H
2#define INCLUDE_ADDRESSING_H 1
3
4#define SOURCE_WIFI 1
5#define SOURCE_RADIO 2
6#define SOURCE_SERIAL 3
7#define SOURCE_USB 4
8#define SOURCE_LORA 5
9#define SOURCE_BLUETOOTH 6
10
11
12long adr_create_new_node_id();
13int adr_isvalid(long l);
14void print_node_id(long l);
15void node_to_str(long l, char *buf);
16void pretty_node_to_str(long l, char *buf);
17
18#endif