~aleteoryx/muditaos

ref: cd45c2acfe7988cfae36d904126c598d6fc6559f muditaos/module-bsp/bsp/headset/headset.hpp -rw-r--r-- 217 bytes
cd45c2ac — Kuba Kleczkowski [EGD-6322] Add rejecting incoming calls in dnd mode 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "FreeRTOS.h"
#include "queue.h"


namespace bsp {
 namespace headset {
 int32_t Init(xQueueHandle qHandle);
 	bool Handler(uint8_t notification);
 	 bool IsInserted();
 	int32_t Deinit();

 }
}