 cf1c8fb223
			
		
	
	
		cf1c8fb223
		
			
		
	
	
	
	
		
			
			* sepate one wire class * TM2004 writer * app mode write ds1990 * test another blanks protocol * new ibutton slave * one wire states * tim1 capture compare and update interrupts * interrupt mgr, new timers IRQ * discard HAL_TIM_PeriodElapsedCallback from main * add exti_14 line * add external interrupt callback * use int mgr in input * better interrupt managment * add interrupt callback enable and disable fns * properly init app * changed timings * rename one wire classes * use new owb classes * properly remove interrupts * new blanks writer * remove unused tests * new core includes * extern c guard * fix api_interrupt_remove usage * remove debug info, new way to detect blanks writing * remove copy constructor * change keys template * fix app sources recipe
		
			
				
	
	
		
			26 lines
		
	
	
		
			465 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			465 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| #include <stdint.h>
 | |
| #include "maxim_crc.h"
 | |
| #include "one_wire_slave.h"
 | |
| 
 | |
| class OneWireDevice {
 | |
| public:
 | |
|     OneWireDevice(
 | |
|         uint8_t id_1,
 | |
|         uint8_t id_2,
 | |
|         uint8_t id_3,
 | |
|         uint8_t id_4,
 | |
|         uint8_t id_5,
 | |
|         uint8_t id_6,
 | |
|         uint8_t id_7);
 | |
| 
 | |
|     ~OneWireDevice();
 | |
| 
 | |
|     uint8_t id_storage[8];
 | |
| 
 | |
|     void send_id() const;
 | |
| 
 | |
|     OneWireSlave* bus = nullptr;
 | |
|     void attach(OneWireSlave* _bus);
 | |
|     void deattach(void);
 | |
| }; |