21 lines
338 B
C
21 lines
338 B
C
/*
|
|
* sent.h
|
|
*
|
|
* SENT protocol decoder header
|
|
*
|
|
* @date Oct 01, 2022
|
|
* @author Andrey Gusakov <dron0gus@gmail.com>, (c) 2022
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* SENT decoder init */
|
|
void initSent();
|
|
|
|
/* ISR hook */
|
|
void SENT_ISR_Handler(uint8_t ch, uint16_t val_res);
|
|
|
|
/* Stop/Start for config update */
|
|
void startSent(void);
|
|
void stopSent(void);
|