xref: /btstack/test/gatt_client/mock.c (revision f5bdf8a13391932b5012582f857ddef9c59bf125)
1f45e14b1S[email protected] #include <stdint.h>
2f45e14b1S[email protected] #include <stdio.h>
3f45e14b1S[email protected] #include <stdlib.h>
4f45e14b1S[email protected] #include <string.h>
5f45e14b1S[email protected] 
6f45e14b1S[email protected] #include <btstack/btstack.h>
74d890b2dS[email protected] #include "att.h"
8f45e14b1S[email protected] #include "hci.h"
9f45e14b1S[email protected] #include "hci_dump.h"
10f45e14b1S[email protected] #include "l2cap.h"
114f5e8608S[email protected] #include "ble_client.h"
124f5e8608S[email protected] 
134f5e8608S[email protected] static btstack_packet_handler_t att_packet_handler;
144f5e8608S[email protected] static void (*gatt_central_packet_handler) (void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size) = NULL;
154f5e8608S[email protected] 
16c442c7c2S[email protected] static const uint16_t max_mtu = 23;
17c442c7c2S[email protected] static uint8_t  l2cap_stack_buffer[max_mtu];
184f5e8608S[email protected] 
199638642bS[email protected] void mock_simulate_command_complete(const hci_cmd_t *cmd){
204f5e8608S[email protected] 	uint8_t packet[] = {HCI_EVENT_COMMAND_COMPLETE, 4, 1, cmd->opcode & 0xff, cmd->opcode >> 8, 0};
214f5e8608S[email protected] 		gatt_central_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, sizeof(packet));
224f5e8608S[email protected] }
234f5e8608S[email protected] 
249638642bS[email protected] void mock_simulate_hci_state_working(){
259638642bS[email protected] 	uint8_t packet[3] = {BTSTACK_EVENT_STATE, 0, HCI_STATE_WORKING};
269638642bS[email protected] 	gatt_central_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, 3);
279638642bS[email protected] }
289638642bS[email protected] 
29c442c7c2S[email protected] void mock_simulate_connected(){
30c442c7c2S[email protected] 	uint8_t packet[] = {0x3E, 0x13, 0x01, 0x00, 0x40, 0x00, 0x00, 0x00, 0x9B, 0x77, 0xD1, 0xF7, 0xB1, 0x34, 0x50, 0x00, 0x00, 0x00, 0xD0, 0x07, 0x05};
314f5e8608S[email protected] 	gatt_central_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, sizeof(packet));
324f5e8608S[email protected] }
33f45e14b1S[email protected] 
34c442c7c2S[email protected] 
35c442c7c2S[email protected] void mock_simulate_scan_response(){
36c442c7c2S[email protected] 	uint8_t packet[] = {0x3E, 0x0F, 0x02, 0x01, 0x00, 0x00, 0x9B, 0x77, 0xD1, 0xF7, 0xB1, 0x34, 0x03, 0x02, 0x01, 0x05, 0xBC};
37c442c7c2S[email protected] 	gatt_central_packet_handler(NULL, HCI_EVENT_PACKET, NULL, (uint8_t *)&packet, sizeof(packet));
38c442c7c2S[email protected] }
39c442c7c2S[email protected] 
40c442c7c2S[email protected] void mock_simulate_exchange_mtu(){
414d890b2dS[email protected] 	// uint8_t packet[] = {0x03, 0x17, 0x00};
424d890b2dS[email protected] 	// att_packet_handler(ATT_DATA_PACKET, 0x40, (uint8_t *)&packet, sizeof(packet));
434d890b2dS[email protected] }
444d890b2dS[email protected] 
454d890b2dS[email protected] static void att_init_connection(att_connection_t * att_connection){
464d890b2dS[email protected]     att_connection->mtu = 23;
474d890b2dS[email protected]     att_connection->encryption_key_size = 0;
484d890b2dS[email protected]     att_connection->authenticated = 0;
494d890b2dS[email protected] 	att_connection->authorized = 0;
50c442c7c2S[email protected] }
51c442c7c2S[email protected] 
52f45e14b1S[email protected] int hci_can_send_packet_now_using_packet_buffer(uint8_t packet_type){
53f45e14b1S[email protected] 	return 1;
54f45e14b1S[email protected] }
55f45e14b1S[email protected] 
564f5e8608S[email protected] int  l2cap_can_send_connectionless_packet_now(void){
574f5e8608S[email protected] 	return 1;
58f45e14b1S[email protected] }
59f45e14b1S[email protected] 
60f45e14b1S[email protected] int hci_send_cmd(const hci_cmd_t *cmd, ...){
61c442c7c2S[email protected] 	printf("hci_send_cmd opcode 0x%02x\n", cmd->opcode);
62f45e14b1S[email protected] 	return 0;
63f45e14b1S[email protected] }
64f45e14b1S[email protected] 
65f45e14b1S[email protected] 
66f45e14b1S[email protected] uint8_t *l2cap_get_outgoing_buffer(void){
67*f5bdf8a1S[email protected] 	// printf("l2cap_get_outgoing_buffer\n");
68f45e14b1S[email protected] 	return (uint8_t *)&l2cap_stack_buffer; // 8 bytes
69f45e14b1S[email protected] }
70f45e14b1S[email protected] 
71f45e14b1S[email protected] uint16_t l2cap_max_mtu(void){
72*f5bdf8a1S[email protected] 	// printf("l2cap_max_mtu\n");
73c442c7c2S[email protected]     return max_mtu;
74f45e14b1S[email protected] }
75f45e14b1S[email protected] 
76f45e14b1S[email protected] 
77f45e14b1S[email protected] void l2cap_register_fixed_channel(btstack_packet_handler_t packet_handler, uint16_t channel_id) {
784f5e8608S[email protected] 	att_packet_handler = packet_handler;
79f45e14b1S[email protected] }
80f45e14b1S[email protected] 
81f45e14b1S[email protected] void l2cap_register_packet_handler(void (*handler)(void * connection, uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size)){
824f5e8608S[email protected] 	gatt_central_packet_handler = handler;
83f45e14b1S[email protected] }
84f45e14b1S[email protected] 
85f45e14b1S[email protected] int l2cap_reserve_packet_buffer(void){
86*f5bdf8a1S[email protected] 	// printf("l2cap_reserve_packet_buffer\n");
87c442c7c2S[email protected] 	return 1;
88f45e14b1S[email protected] }
89f45e14b1S[email protected] 
90f45e14b1S[email protected] int l2cap_send_prepared_connectionless(uint16_t handle, uint16_t cid, uint16_t len){
91*f5bdf8a1S[email protected] 	// printf("l2cap_send_prepared_connectionless\n");
924d890b2dS[email protected] 	// assert handle = current connection
934d890b2dS[email protected] 	// assert cid = att
944d890b2dS[email protected] 
954d890b2dS[email protected] 	att_connection_t att_connection;
964d890b2dS[email protected] 	att_init_connection(&att_connection);
974d890b2dS[email protected] 	uint8_t response[max_mtu];
984d890b2dS[email protected] 	uint16_t response_len = att_handle_request(&att_connection, l2cap_get_outgoing_buffer(), len, &response[0]);
994d890b2dS[email protected] 	att_packet_handler(ATT_DATA_PACKET, 0x40, &response[0], response_len);
1004d890b2dS[email protected] 
101f45e14b1S[email protected] 	return 0;
102f45e14b1S[email protected] }
103f45e14b1S[email protected] 
104f45e14b1S[email protected] 
1054f5e8608S[email protected] void hci_disconnect_security_block(hci_con_handle_t con_handle){
1064f5e8608S[email protected] 	printf("hci_disconnect_security_block \n");
1074f5e8608S[email protected] }
1084f5e8608S[email protected] 
1094f5e8608S[email protected] void hci_dump_log(const char * format, ...){
1104f5e8608S[email protected] 	printf("hci_disconnect_security_block \n");
1114f5e8608S[email protected] }
1124f5e8608S[email protected] 
113f45e14b1S[email protected] void l2cap_run(void){
114f45e14b1S[email protected] }
115