1b08c8c49SMatthias Ringwald /** 2*5eb1ca07SMatthias Ringwald * Assigned numbers from www.bluetooth.com/specifications/assigned-numbers/ 3b08c8c49SMatthias Ringwald */ 4b08c8c49SMatthias Ringwald 5b08c8c49SMatthias Ringwald #ifndef BLUETOOTH_PSM_H 6b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_H 7b08c8c49SMatthias Ringwald 8b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_SDP 0x0001 9b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_RFCOMM 0x0003 10b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_TCS_BIN 0x0005 11b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_TCS_BIN_CORDLESS 0x0007 12b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_BNEP 0x000F 13b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_HID_CONTROL 0x0011 14b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_HID_INTERRUPT 0x0013 15b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_UPNP 0x0015 16b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_AVCTP 0x0017 17b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_AVDTP 0x0019 18b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_AVCTP_BROWSING 0x001B 19b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_UDI_C_PLANE 0x001D 20b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_ATT 0x001F 21b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_3DSP 0x0021 22b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_LE_PSM_IPSP 0x0023 23b08c8c49SMatthias Ringwald #define BLUETOOTH_PSM_OTS 0x0025 24*5eb1ca07SMatthias Ringwald #define BLUETOOTH_PSM_EATT 0x0027 25b08c8c49SMatthias Ringwald 26b08c8c49SMatthias Ringwald #endif 27