bosko lekovic
/
IO_board_K22
K22 processor
Diff: SPIprotokol/IOspiprotokol.h
- Revision:
- 7:4aa3dac73b66
- Child:
- 15:3429cdc6e5f4
diff -r 12b2660d7dff -r 4aa3dac73b66 SPIprotokol/IOspiprotokol.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SPIprotokol/IOspiprotokol.h Sun Mar 21 18:20:15 2021 +0100 @@ -0,0 +1,32 @@ +#ifndef IOSPIPROTOKOL_H +#define IOSPIPROTOKOL_H + +//#include "IOspitelegram.h" +#include "IOspiConnect.h" +#include "IOdata.h" +#include "ledControl.h" + +class C_spiProtokol: public C_spiConnect +{ + C_data *pc_data; + C_ledControl *pc_ledControl; + public: + + C_spiProtokol( C_data *pc_data, C_ledControl *pc_ledControl): C_spiConnect()//(/*PTD6, PTD7, PTD5*/) + { + this->pc_data = pc_data; + this->pc_ledControl = pc_ledControl; + set_myAddress( pc_data->get_address()); + set_reset(true); + }; + + void do_writeCommand( const char command, const char data) override; + char do_readCommand( const char command, const char data) override; + void do_readGroupCommand( const char command); + void inic_address( void ) { set_myAddress(pc_data->get_address()); } +}; + + + + +#endif \ No newline at end of file