Searched refs:packetType (Results 1 – 8 of 8) sorted by relevance
/btstack/platform/daemon/binding/java/src/com/bluekitchen/btstack/ |
H A D | Packet.java | 12 protected int packetType; field in Packet 16 return packetType; in getPacketType() 31 public Packet(int packetType, int channel, byte[] buffer, int payloadLen){ in Packet() argument 32 this.packetType = packetType; in Packet() 41 t.append(String.format("Packet %d, channel %d, len %d: ", packetType, channel, payloadLen)); in toString()
|
H A D | SocketConnectionTCP.java | 73 int packetType = Util.readBt16(inHeader, 0); in receivePacket() local 80 Packet packet = new Packet(packetType, channel ,inPayload, len); in receivePacket()
|
/btstack/platform/daemon/binding/java/android/com/bluekitchen/btstack/ |
H A D | SocketConnectionUnix.java | 72 int packetType = Util.readBt16(inHeader, 0); in receivePacket() local 79 Packet packet = new Packet(packetType, channel, inPayload, len); in receivePacket()
|
/btstack/port/mtk/LEScan/src/com/bluekitchen/btstack/ |
H A D | SocketConnectionUnix.java | 72 int packetType = Util.readBt16(inHeader, 0); in receivePacket() local 78 Packet packet = new Packet(packetType, channel ,inPayload, len); in receivePacket()
|
/btstack/port/mtk/SPPClient/src/com/bluekitchen/btstack/ |
H A D | SocketConnectionUnix.java | 72 int packetType = Util.readBt16(inHeader, 0); in receivePacket() local 78 Packet packet = new Packet(packetType, channel ,inPayload, len); in receivePacket()
|
/btstack/chipset/sx128x/SMTC_Drivers/sx1280-driver-c/ |
H A D | sx1280.c | 228 void SX1280SetPacketType( RadioPacketTypes_t packetType ) in SX1280SetPacketType() argument 231 PacketType = packetType; in SX1280SetPacketType() 233 SX1280HalWriteCommand( RADIO_SET_PACKETTYPE, ( uint8_t* )&packetType, 1 ); in SX1280SetPacketType() 426 pktStatus->packetType = SX1280GetPacketType( ); in SX1280GetPacketStatus() 427 switch( pktStatus->packetType ) in SX1280GetPacketStatus() 507 pktStatus->packetType = PACKET_TYPE_NONE; in SX1280GetPacketStatus() 1207 RadioPacketTypes_t packetType = PACKET_TYPE_NONE; in SX1280ProcessIrqs() local 1228 packetType = SX1280GetPacketType( ); in SX1280ProcessIrqs() 1232 switch( packetType ) in SX1280ProcessIrqs()
|
H A D | sx1280.h | 924 …RadioPacketTypes_t packetType; //!< Packet to which the packet status ar… member 1020 …RadioPacketTypes_t packetType; //!< Packet to which the packet status are… member 1259 void SX1280SetPacketType( RadioPacketTypes_t packetType );
|
H A D | radio.h | 158 void ( *SetPacketType )( RadioPacketTypes_t packetType );
|