42 lines
969 B
C
42 lines
969 B
C
// https://github.com/rafaelvaloto/Pico_W-Dualsense/blob/main/btstack_config.h
|
|
|
|
// c
|
|
#ifndef BTSTACK_CONFIG_H
|
|
#define BTSTACK_CONFIG_H
|
|
|
|
#define ENABLE_L2CAP_ENHANCED_RETRANSMISSION_MODE
|
|
#ifndef ENABLE_CLASSIC
|
|
#define ENABLE_CLASSIC
|
|
#endif
|
|
|
|
|
|
// CYW43 HCI Transport requires pre-buffer space for packet header
|
|
|
|
// Se estiver 1 ou 2, o 0x31 do DualSense causa estouro
|
|
#define MAX_NR_HCI_ACL_PACKETS 4
|
|
|
|
#define MAX_NR_HCI_CONNECTIONS 4
|
|
#define MAX_NR_L2CAP_CHANNELS 4
|
|
#define MAX_NR_L2CAP_SERVICES 4
|
|
//
|
|
#define HCI_ACL_PAYLOAD_SIZE 256
|
|
#define HCI_ACL_CHUNK_SIZE_ALIGNMENT 4
|
|
#define HCI_OUTGOING_PRE_BUFFER_SIZE 4
|
|
|
|
|
|
#define MAX_NR_RFCOMM_MULTIPLEXERS 0
|
|
#define MAX_NR_RFCOMM_SERVICES 0
|
|
#define MAX_NR_RFCOMM_CHANNELS 0
|
|
|
|
// CYW43 específico - necessário para o transport layer
|
|
|
|
#define NVM_NUM_LINK_KEYS 4
|
|
#define NVM_NUM_DEVICE_DB_ENTRIES 4
|
|
#define HAVE_EMBEDDED_TIME_MS
|
|
|
|
// Logging
|
|
#define ENABLE_PRINTF_HEXDUMP
|
|
#define ENABLE_LOG_INFO
|
|
#define ENABLE_LOG_ERROR
|
|
|
|
#endif |