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
294 B
12 lines
294 B
#ifndef SPI_PROTO_H
|
|
#define SPI_PROTO_H
|
|
|
|
uint16_t read_temperature(uint8_t number);
|
|
uint8_t read_var8(uint8_t number);
|
|
uint16_t read_var16(uint8_t number);
|
|
void write_var8(uint8_t number, uint8_t value);
|
|
void write_var16(uint8_t number, uint16_t value);
|
|
void call_func(uint8_t number);
|
|
|
|
#endif
|