16 lines
432 B
C
16 lines
432 B
C
#ifndef CITS_PARSER_H
|
|
#define CITS_PARSER_H
|
|
|
|
#include <stdint.h>
|
|
#include "esp_err.h"
|
|
|
|
/* ---------- Public API ---------- */
|
|
void cits_process_packet(const uint8_t *data, uint16_t data_len,
|
|
int8_t rssi, uint32_t channel_mhz,
|
|
uint32_t timestamp_sec, uint32_t timestamp_usec);
|
|
|
|
esp_err_t cits_parser_init(void);
|
|
void cits_parser_deinit(void);
|
|
|
|
#endif /* CITS_PARSER_H */
|