-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhapi.h
More file actions
18 lines (13 loc) · 786 Bytes
/
hapi.h
File metadata and controls
18 lines (13 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __HAPI_H
#define __HAPI_H
extern char hapi(char c); // output routine (putchar compatible)
extern void hapi_init(); // reset communication
extern char hapi_getchar();
extern void hapi_proc(void); // communication process
extern char *hapi_result_string(); // text result code
extern char idata hapi_dest_device_id; // destination device address on interface
extern char idata hapi_this_device_id; // self device address on interface
extern char idata hapi_rec_result_code; // receive error status
extern char idata hapi_snd_result_code; // send error status
extern char idata hapi_rec_in; // pocet byte v prijimaciho bufferu
#endif