blob: 41a34e061845f430f5a234bc81758fc6c4d0c20c [file] [log] [blame]
Herb Jellineka4733942010-08-10 13:17:43 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.bluetooth;
18
19/**
20 * Bluetooth Assigned Numbers.
21 * <p>
22 * For now we only include Company ID values.
Herb Jellineka4733942010-08-10 13:17:43 -070023 *
Jack Hea355e5e2017-08-22 16:06:54 -070024 * @see <a href="https://www.bluetooth.org/technical/assignednumbers/identifiers.htm"> The Official
25 * Bluetooth SIG Member Website | Company Identifiers</a>
Herb Jellineka4733942010-08-10 13:17:43 -070026 */
27public class BluetoothAssignedNumbers {
28
Jaikumar Ganeshe775b3d2010-09-29 11:34:59 -070029 // Bluetooth SIG Company ID values
Herb Jellineka4733942010-08-10 13:17:43 -070030 /*
31 * Ericsson Technology Licensing.
32 */
33 public static final int ERICSSON_TECHNOLOGY = 0x0000;
34
35 /*
36 * Nokia Mobile Phones.
37 */
38 public static final int NOKIA_MOBILE_PHONES = 0x0001;
39
40 /*
41 * Intel Corp.
42 */
43 public static final int INTEL = 0x0002;
44
45 /*
46 * IBM Corp.
47 */
48 public static final int IBM = 0x0003;
49
50 /*
51 * Toshiba Corp.
52 */
53 public static final int TOSHIBA = 0x0004;
54
55 /*
56 * 3Com.
57 */
58 public static final int THREECOM = 0x0005;
59
60 /*
61 * Microsoft.
62 */
63 public static final int MICROSOFT = 0x0006;
64
65 /*
66 * Lucent.
67 */
68 public static final int LUCENT = 0x0007;
69
70 /*
71 * Motorola.
72 */
73 public static final int MOTOROLA = 0x0008;
74
75 /*
76 * Infineon Technologies AG.
77 */
78 public static final int INFINEON_TECHNOLOGIES = 0x0009;
79
80 /*
81 * Cambridge Silicon Radio.
82 */
83 public static final int CAMBRIDGE_SILICON_RADIO = 0x000A;
84
85 /*
86 * Silicon Wave.
87 */
88 public static final int SILICON_WAVE = 0x000B;
89
90 /*
91 * Digianswer A/S.
92 */
93 public static final int DIGIANSWER = 0x000C;
94
95 /*
96 * Texas Instruments Inc.
97 */
98 public static final int TEXAS_INSTRUMENTS = 0x000D;
99
100 /*
101 * Parthus Technologies Inc.
102 */
103 public static final int PARTHUS_TECHNOLOGIES = 0x000E;
104
105 /*
106 * Broadcom Corporation.
107 */
108 public static final int BROADCOM = 0x000F;
109
110 /*
111 * Mitel Semiconductor.
112 */
113 public static final int MITEL_SEMICONDUCTOR = 0x0010;
114
115 /*
116 * Widcomm, Inc.
117 */
118 public static final int WIDCOMM = 0x0011;
119
120 /*
121 * Zeevo, Inc.
122 */
123 public static final int ZEEVO = 0x0012;
124
125 /*
126 * Atmel Corporation.
127 */
128 public static final int ATMEL = 0x0013;
129
130 /*
131 * Mitsubishi Electric Corporation.
132 */
133 public static final int MITSUBISHI_ELECTRIC = 0x0014;
134
135 /*
136 * RTX Telecom A/S.
137 */
138 public static final int RTX_TELECOM = 0x0015;
139
140 /*
141 * KC Technology Inc.
142 */
143 public static final int KC_TECHNOLOGY = 0x0016;
144
145 /*
146 * Newlogic.
147 */
148 public static final int NEWLOGIC = 0x0017;
149
150 /*
151 * Transilica, Inc.
152 */
153 public static final int TRANSILICA = 0x0018;
154
155 /*
156 * Rohde & Schwarz GmbH & Co. KG.
157 */
158 public static final int ROHDE_AND_SCHWARZ = 0x0019;
159
160 /*
161 * TTPCom Limited.
162 */
163 public static final int TTPCOM = 0x001A;
164
165 /*
166 * Signia Technologies, Inc.
167 */
168 public static final int SIGNIA_TECHNOLOGIES = 0x001B;
169
170 /*
171 * Conexant Systems Inc.
172 */
173 public static final int CONEXANT_SYSTEMS = 0x001C;
174
175 /*
176 * Qualcomm.
177 */
178 public static final int QUALCOMM = 0x001D;
179
180 /*
181 * Inventel.
182 */
183 public static final int INVENTEL = 0x001E;
184
185 /*
186 * AVM Berlin.
187 */
188 public static final int AVM_BERLIN = 0x001F;
189
190 /*
191 * BandSpeed, Inc.
192 */
193 public static final int BANDSPEED = 0x0020;
194
195 /*
196 * Mansella Ltd.
197 */
198 public static final int MANSELLA = 0x0021;
199
200 /*
201 * NEC Corporation.
202 */
203 public static final int NEC = 0x0022;
204
205 /*
206 * WavePlus Technology Co., Ltd.
207 */
208 public static final int WAVEPLUS_TECHNOLOGY = 0x0023;
209
210 /*
211 * Alcatel.
212 */
213 public static final int ALCATEL = 0x0024;
214
215 /*
216 * Philips Semiconductors.
217 */
218 public static final int PHILIPS_SEMICONDUCTORS = 0x0025;
219
220 /*
221 * C Technologies.
222 */
223 public static final int C_TECHNOLOGIES = 0x0026;
224
225 /*
226 * Open Interface.
227 */
228 public static final int OPEN_INTERFACE = 0x0027;
229
230 /*
231 * R F Micro Devices.
232 */
233 public static final int RF_MICRO_DEVICES = 0x0028;
234
235 /*
236 * Hitachi Ltd.
237 */
238 public static final int HITACHI = 0x0029;
239
240 /*
241 * Symbol Technologies, Inc.
242 */
243 public static final int SYMBOL_TECHNOLOGIES = 0x002A;
244
245 /*
246 * Tenovis.
247 */
248 public static final int TENOVIS = 0x002B;
249
250 /*
251 * Macronix International Co. Ltd.
252 */
253 public static final int MACRONIX = 0x002C;
254
255 /*
256 * GCT Semiconductor.
257 */
258 public static final int GCT_SEMICONDUCTOR = 0x002D;
259
260 /*
261 * Norwood Systems.
262 */
263 public static final int NORWOOD_SYSTEMS = 0x002E;
264
265 /*
266 * MewTel Technology Inc.
267 */
268 public static final int MEWTEL_TECHNOLOGY = 0x002F;
269
270 /*
271 * ST Microelectronics.
272 */
273 public static final int ST_MICROELECTRONICS = 0x0030;
274
275 /*
276 * Synopsys.
277 */
278 public static final int SYNOPSYS = 0x0031;
279
280 /*
281 * Red-M (Communications) Ltd.
282 */
283 public static final int RED_M = 0x0032;
284
285 /*
286 * Commil Ltd.
287 */
288 public static final int COMMIL = 0x0033;
289
290 /*
291 * Computer Access Technology Corporation (CATC).
292 */
293 public static final int CATC = 0x0034;
294
295 /*
296 * Eclipse (HQ Espana) S.L.
297 */
298 public static final int ECLIPSE = 0x0035;
299
300 /*
301 * Renesas Technology Corp.
302 */
303 public static final int RENESAS_TECHNOLOGY = 0x0036;
304
305 /*
306 * Mobilian Corporation.
307 */
308 public static final int MOBILIAN_CORPORATION = 0x0037;
309
310 /*
311 * Terax.
312 */
313 public static final int TERAX = 0x0038;
314
315 /*
316 * Integrated System Solution Corp.
317 */
318 public static final int INTEGRATED_SYSTEM_SOLUTION = 0x0039;
319
320 /*
321 * Matsushita Electric Industrial Co., Ltd.
322 */
323 public static final int MATSUSHITA_ELECTRIC = 0x003A;
324
325 /*
326 * Gennum Corporation.
327 */
328 public static final int GENNUM = 0x003B;
329
330 /*
331 * Research In Motion.
332 */
333 public static final int RESEARCH_IN_MOTION = 0x003C;
334
335 /*
336 * IPextreme, Inc.
337 */
338 public static final int IPEXTREME = 0x003D;
339
340 /*
341 * Systems and Chips, Inc.
342 */
343 public static final int SYSTEMS_AND_CHIPS = 0x003E;
344
345 /*
346 * Bluetooth SIG, Inc.
347 */
348 public static final int BLUETOOTH_SIG = 0x003F;
349
350 /*
351 * Seiko Epson Corporation.
352 */
353 public static final int SEIKO_EPSON = 0x0040;
354
355 /*
356 * Integrated Silicon Solution Taiwan, Inc.
357 */
358 public static final int INTEGRATED_SILICON_SOLUTION = 0x0041;
359
360 /*
361 * CONWISE Technology Corporation Ltd.
362 */
363 public static final int CONWISE_TECHNOLOGY = 0x0042;
364
365 /*
366 * PARROT SA.
367 */
368 public static final int PARROT = 0x0043;
369
370 /*
371 * Socket Mobile.
372 */
373 public static final int SOCKET_MOBILE = 0x0044;
374
375 /*
376 * Atheros Communications, Inc.
377 */
378 public static final int ATHEROS_COMMUNICATIONS = 0x0045;
379
380 /*
381 * MediaTek, Inc.
382 */
383 public static final int MEDIATEK = 0x0046;
384
385 /*
386 * Bluegiga.
387 */
388 public static final int BLUEGIGA = 0x0047;
389
390 /*
391 * Marvell Technology Group Ltd.
392 */
393 public static final int MARVELL = 0x0048;
394
395 /*
396 * 3DSP Corporation.
397 */
398 public static final int THREE_DSP = 0x0049;
399
400 /*
401 * Accel Semiconductor Ltd.
402 */
403 public static final int ACCEL_SEMICONDUCTOR = 0x004A;
404
405 /*
406 * Continental Automotive Systems.
407 */
408 public static final int CONTINENTAL_AUTOMOTIVE = 0x004B;
409
410 /*
411 * Apple, Inc.
412 */
413 public static final int APPLE = 0x004C;
414
415 /*
416 * Staccato Communications, Inc.
417 */
418 public static final int STACCATO_COMMUNICATIONS = 0x004D;
419
420 /*
421 * Avago Technologies.
422 */
423 public static final int AVAGO = 0x004E;
424
425 /*
426 * APT Licensing Ltd.
427 */
428 public static final int APT_LICENSING = 0x004F;
429
430 /*
431 * SiRF Technology, Inc.
432 */
433 public static final int SIRF_TECHNOLOGY = 0x0050;
434
435 /*
436 * Tzero Technologies, Inc.
437 */
438 public static final int TZERO_TECHNOLOGIES = 0x0051;
439
440 /*
441 * J&M Corporation.
442 */
443 public static final int J_AND_M = 0x0052;
444
445 /*
446 * Free2move AB.
447 */
448 public static final int FREE2MOVE = 0x0053;
449
450 /*
451 * 3DiJoy Corporation.
452 */
453 public static final int THREE_DIJOY = 0x0054;
454
455 /*
456 * Plantronics, Inc.
457 */
458 public static final int PLANTRONICS = 0x0055;
459
460 /*
461 * Sony Ericsson Mobile Communications.
462 */
463 public static final int SONY_ERICSSON = 0x0056;
464
465 /*
466 * Harman International Industries, Inc.
467 */
468 public static final int HARMAN_INTERNATIONAL = 0x0057;
469
470 /*
471 * Vizio, Inc.
472 */
473 public static final int VIZIO = 0x0058;
474
475 /*
476 * Nordic Semiconductor ASA.
477 */
478 public static final int NORDIC_SEMICONDUCTOR = 0x0059;
479
480 /*
481 * EM Microelectronic-Marin SA.
482 */
483 public static final int EM_MICROELECTRONIC_MARIN = 0x005A;
484
485 /*
486 * Ralink Technology Corporation.
487 */
488 public static final int RALINK_TECHNOLOGY = 0x005B;
489
490 /*
491 * Belkin International, Inc.
492 */
493 public static final int BELKIN_INTERNATIONAL = 0x005C;
494
495 /*
496 * Realtek Semiconductor Corporation.
497 */
498 public static final int REALTEK_SEMICONDUCTOR = 0x005D;
499
500 /*
501 * Stonestreet One, LLC.
502 */
503 public static final int STONESTREET_ONE = 0x005E;
504
505 /*
506 * Wicentric, Inc.
507 */
508 public static final int WICENTRIC = 0x005F;
509
510 /*
511 * RivieraWaves S.A.S.
512 */
513 public static final int RIVIERAWAVES = 0x0060;
514
515 /*
Edward Jee922d41b2013-08-16 04:07:49 -0700516 * RDA Microelectronics.
517 */
518 public static final int RDA_MICROELECTRONICS = 0x0061;
519
520 /*
521 * Gibson Guitars.
522 */
523 public static final int GIBSON_GUITARS = 0x0062;
524
525 /*
526 * MiCommand Inc.
527 */
528 public static final int MICOMMAND = 0x0063;
529
530 /*
531 * Band XI International, LLC.
532 */
533 public static final int BAND_XI_INTERNATIONAL = 0x0064;
534
535 /*
536 * Hewlett-Packard Company.
537 */
538 public static final int HEWLETT_PACKARD = 0x0065;
539
540 /*
541 * 9Solutions Oy.
542 */
543 public static final int NINE_SOLUTIONS = 0x0066;
544
545 /*
546 * GN Netcom A/S.
547 */
548 public static final int GN_NETCOM = 0x0067;
549
550 /*
551 * General Motors.
552 */
553 public static final int GENERAL_MOTORS = 0x0068;
554
555 /*
556 * A&D Engineering, Inc.
557 */
558 public static final int A_AND_D_ENGINEERING = 0x0069;
559
560 /*
561 * MindTree Ltd.
562 */
563 public static final int MINDTREE = 0x006A;
564
565 /*
566 * Polar Electro OY.
567 */
568 public static final int POLAR_ELECTRO = 0x006B;
569
570 /*
571 * Beautiful Enterprise Co., Ltd.
572 */
573 public static final int BEAUTIFUL_ENTERPRISE = 0x006C;
574
575 /*
576 * BriarTek, Inc.
577 */
578 public static final int BRIARTEK = 0x006D;
579
580 /*
581 * Summit Data Communications, Inc.
582 */
583 public static final int SUMMIT_DATA_COMMUNICATIONS = 0x006E;
584
585 /*
586 * Sound ID.
587 */
588 public static final int SOUND_ID = 0x006F;
589
590 /*
591 * Monster, LLC.
592 */
593 public static final int MONSTER = 0x0070;
594
595 /*
596 * connectBlue AB.
597 */
598 public static final int CONNECTBLUE = 0x0071;
599
600 /*
601 * ShangHai Super Smart Electronics Co. Ltd.
602 */
603 public static final int SHANGHAI_SUPER_SMART_ELECTRONICS = 0x0072;
604
605 /*
606 * Group Sense Ltd.
607 */
608 public static final int GROUP_SENSE = 0x0073;
609
610 /*
611 * Zomm, LLC.
612 */
613 public static final int ZOMM = 0x0074;
614
615 /*
616 * Samsung Electronics Co. Ltd.
617 */
618 public static final int SAMSUNG_ELECTRONICS = 0x0075;
619
620 /*
621 * Creative Technology Ltd.
622 */
623 public static final int CREATIVE_TECHNOLOGY = 0x0076;
624
625 /*
626 * Laird Technologies.
627 */
628 public static final int LAIRD_TECHNOLOGIES = 0x0077;
629
630 /*
631 * Nike, Inc.
632 */
633 public static final int NIKE = 0x0078;
634
635 /*
636 * lesswire AG.
637 */
638 public static final int LESSWIRE = 0x0079;
639
640 /*
641 * MStar Semiconductor, Inc.
642 */
643 public static final int MSTAR_SEMICONDUCTOR = 0x007A;
644
645 /*
646 * Hanlynn Technologies.
647 */
648 public static final int HANLYNN_TECHNOLOGIES = 0x007B;
649
650 /*
651 * A & R Cambridge.
652 */
653 public static final int A_AND_R_CAMBRIDGE = 0x007C;
654
655 /*
656 * Seers Technology Co. Ltd.
657 */
658 public static final int SEERS_TECHNOLOGY = 0x007D;
659
660 /*
661 * Sports Tracking Technologies Ltd.
662 */
663 public static final int SPORTS_TRACKING_TECHNOLOGIES = 0x007E;
664
665 /*
666 * Autonet Mobile.
667 */
668 public static final int AUTONET_MOBILE = 0x007F;
669
670 /*
671 * DeLorme Publishing Company, Inc.
672 */
673 public static final int DELORME_PUBLISHING_COMPANY = 0x0080;
674
675 /*
676 * WuXi Vimicro.
677 */
678 public static final int WUXI_VIMICRO = 0x0081;
679
680 /*
681 * Sennheiser Communications A/S.
682 */
683 public static final int SENNHEISER_COMMUNICATIONS = 0x0082;
684
685 /*
686 * TimeKeeping Systems, Inc.
687 */
688 public static final int TIMEKEEPING_SYSTEMS = 0x0083;
689
690 /*
691 * Ludus Helsinki Ltd.
692 */
693 public static final int LUDUS_HELSINKI = 0x0084;
694
695 /*
696 * BlueRadios, Inc.
697 */
698 public static final int BLUERADIOS = 0x0085;
699
700 /*
701 * equinox AG.
702 */
703 public static final int EQUINOX_AG = 0x0086;
704
705 /*
706 * Garmin International, Inc.
707 */
708 public static final int GARMIN_INTERNATIONAL = 0x0087;
709
710 /*
711 * Ecotest.
712 */
713 public static final int ECOTEST = 0x0088;
714
715 /*
716 * GN ReSound A/S.
717 */
718 public static final int GN_RESOUND = 0x0089;
719
720 /*
721 * Jawbone.
722 */
723 public static final int JAWBONE = 0x008A;
724
725 /*
726 * Topcorn Positioning Systems, LLC.
727 */
728 public static final int TOPCORN_POSITIONING_SYSTEMS = 0x008B;
729
730 /*
731 * Qualcomm Labs, Inc.
732 */
733 public static final int QUALCOMM_LABS = 0x008C;
734
735 /*
736 * Zscan Software.
737 */
738 public static final int ZSCAN_SOFTWARE = 0x008D;
739
740 /*
741 * Quintic Corp.
742 */
743 public static final int QUINTIC = 0x008E;
744
745 /*
746 * Stollman E+V GmbH.
747 */
748 public static final int STOLLMAN_E_PLUS_V = 0x008F;
749
750 /*
751 * Funai Electric Co., Ltd.
752 */
753 public static final int FUNAI_ELECTRIC = 0x0090;
754
755 /*
756 * Advanced PANMOBIL Systems GmbH & Co. KG.
757 */
758 public static final int ADVANCED_PANMOBIL_SYSTEMS = 0x0091;
759
760 /*
761 * ThinkOptics, Inc.
762 */
763 public static final int THINKOPTICS = 0x0092;
764
765 /*
766 * Universal Electronics, Inc.
767 */
768 public static final int UNIVERSAL_ELECTRONICS = 0x0093;
769
770 /*
771 * Airoha Technology Corp.
772 */
773 public static final int AIROHA_TECHNOLOGY = 0x0094;
774
775 /*
776 * NEC Lighting, Ltd.
777 */
778 public static final int NEC_LIGHTING = 0x0095;
779
780 /*
781 * ODM Technology, Inc.
782 */
783 public static final int ODM_TECHNOLOGY = 0x0096;
784
785 /*
786 * Bluetrek Technologies Limited.
787 */
788 public static final int BLUETREK_TECHNOLOGIES = 0x0097;
789
790 /*
791 * zer01.tv GmbH.
792 */
793 public static final int ZER01_TV = 0x0098;
794
795 /*
796 * i.Tech Dynamic Global Distribution Ltd.
797 */
798 public static final int I_TECH_DYNAMIC_GLOBAL_DISTRIBUTION = 0x0099;
799
800 /*
801 * Alpwise.
802 */
803 public static final int ALPWISE = 0x009A;
804
805 /*
806 * Jiangsu Toppower Automotive Electronics Co., Ltd.
807 */
808 public static final int JIANGSU_TOPPOWER_AUTOMOTIVE_ELECTRONICS = 0x009B;
809
810 /*
811 * Colorfy, Inc.
812 */
813 public static final int COLORFY = 0x009C;
814
815 /*
816 * Geoforce Inc.
817 */
818 public static final int GEOFORCE = 0x009D;
819
820 /*
821 * Bose Corporation.
822 */
823 public static final int BOSE = 0x009E;
824
825 /*
826 * Suunto Oy.
827 */
828 public static final int SUUNTO = 0x009F;
829
830 /*
831 * Kensington Computer Products Group.
832 */
833 public static final int KENSINGTON_COMPUTER_PRODUCTS_GROUP = 0x00A0;
834
835 /*
836 * SR-Medizinelektronik.
837 */
838 public static final int SR_MEDIZINELEKTRONIK = 0x00A1;
839
840 /*
841 * Vertu Corporation Limited.
842 */
843 public static final int VERTU = 0x00A2;
844
845 /*
846 * Meta Watch Ltd.
847 */
848 public static final int META_WATCH = 0x00A3;
849
850 /*
851 * LINAK A/S.
852 */
853 public static final int LINAK = 0x00A4;
854
855 /*
856 * OTL Dynamics LLC.
857 */
858 public static final int OTL_DYNAMICS = 0x00A5;
859
860 /*
861 * Panda Ocean Inc.
862 */
863 public static final int PANDA_OCEAN = 0x00A6;
864
865 /*
866 * Visteon Corporation.
867 */
868 public static final int VISTEON = 0x00A7;
869
870 /*
871 * ARP Devices Limited.
872 */
873 public static final int ARP_DEVICES = 0x00A8;
874
875 /*
876 * Magneti Marelli S.p.A.
877 */
878 public static final int MAGNETI_MARELLI = 0x00A9;
879
880 /*
881 * CAEN RFID srl.
882 */
883 public static final int CAEN_RFID = 0x00AA;
884
885 /*
886 * Ingenieur-Systemgruppe Zahn GmbH.
887 */
888 public static final int INGENIEUR_SYSTEMGRUPPE_ZAHN = 0x00AB;
889
890 /*
891 * Green Throttle Games.
892 */
893 public static final int GREEN_THROTTLE_GAMES = 0x00AC;
894
895 /*
896 * Peter Systemtechnik GmbH.
897 */
898 public static final int PETER_SYSTEMTECHNIK = 0x00AD;
899
900 /*
901 * Omegawave Oy.
902 */
903 public static final int OMEGAWAVE = 0x00AE;
904
905 /*
906 * Cinetix.
907 */
908 public static final int CINETIX = 0x00AF;
909
910 /*
911 * Passif Semiconductor Corp.
912 */
913 public static final int PASSIF_SEMICONDUCTOR = 0x00B0;
914
915 /*
916 * Saris Cycling Group, Inc.
917 */
918 public static final int SARIS_CYCLING_GROUP = 0x00B1;
919
920 /*
921 * Bekey A/S.
922 */
923 public static final int BEKEY = 0x00B2;
924
925 /*
926 * Clarinox Technologies Pty. Ltd.
927 */
928 public static final int CLARINOX_TECHNOLOGIES = 0x00B3;
929
930 /*
931 * BDE Technology Co., Ltd.
932 */
933 public static final int BDE_TECHNOLOGY = 0x00B4;
934
935 /*
936 * Swirl Networks.
937 */
938 public static final int SWIRL_NETWORKS = 0x00B5;
939
940 /*
941 * Meso international.
942 */
943 public static final int MESO_INTERNATIONAL = 0x00B6;
944
945 /*
946 * TreLab Ltd.
947 */
948 public static final int TRELAB = 0x00B7;
949
950 /*
951 * Qualcomm Innovation Center, Inc. (QuIC).
952 */
953 public static final int QUALCOMM_INNOVATION_CENTER = 0x00B8;
954
955 /*
956 * Johnson Controls, Inc.
957 */
958 public static final int JOHNSON_CONTROLS = 0x00B9;
959
960 /*
961 * Starkey Laboratories Inc.
962 */
963 public static final int STARKEY_LABORATORIES = 0x00BA;
964
965 /*
966 * S-Power Electronics Limited.
967 */
968 public static final int S_POWER_ELECTRONICS = 0x00BB;
969
970 /*
971 * Ace Sensor Inc.
972 */
973 public static final int ACE_SENSOR = 0x00BC;
974
975 /*
976 * Aplix Corporation.
977 */
978 public static final int APLIX = 0x00BD;
979
980 /*
981 * AAMP of America.
982 */
983 public static final int AAMP_OF_AMERICA = 0x00BE;
984
985 /*
986 * Stalmart Technology Limited.
987 */
988 public static final int STALMART_TECHNOLOGY = 0x00BF;
989
990 /*
991 * AMICCOM Electronics Corporation.
992 */
993 public static final int AMICCOM_ELECTRONICS = 0x00C0;
994
995 /*
996 * Shenzhen Excelsecu Data Technology Co.,Ltd.
997 */
998 public static final int SHENZHEN_EXCELSECU_DATA_TECHNOLOGY = 0x00C1;
999
1000 /*
1001 * Geneq Inc.
1002 */
1003 public static final int GENEQ = 0x00C2;
1004
1005 /*
1006 * adidas AG.
1007 */
1008 public static final int ADIDAS = 0x00C3;
1009
1010 /*
1011 * LG Electronics.
1012 */
1013 public static final int LG_ELECTRONICS = 0x00C4;
1014
1015 /*
1016 * Onset Computer Corporation.
1017 */
1018 public static final int ONSET_COMPUTER = 0x00C5;
1019
1020 /*
1021 * Selfly BV.
1022 */
1023 public static final int SELFLY = 0x00C6;
1024
1025 /*
1026 * Quuppa Oy.
1027 */
1028 public static final int QUUPPA = 0x00C7;
1029
1030 /*
1031 * GeLo Inc.
1032 */
1033 public static final int GELO = 0x00C8;
1034
1035 /*
1036 * Evluma.
1037 */
1038 public static final int EVLUMA = 0x00C9;
1039
1040 /*
1041 * MC10.
1042 */
1043 public static final int MC10 = 0x00CA;
1044
1045 /*
1046 * Binauric SE.
1047 */
1048 public static final int BINAURIC = 0x00CB;
1049
1050 /*
1051 * Beats Electronics.
1052 */
1053 public static final int BEATS_ELECTRONICS = 0x00CC;
1054
1055 /*
1056 * Microchip Technology Inc.
1057 */
1058 public static final int MICROCHIP_TECHNOLOGY = 0x00CD;
1059
1060 /*
1061 * Elgato Systems GmbH.
1062 */
1063 public static final int ELGATO_SYSTEMS = 0x00CE;
1064
1065 /*
1066 * ARCHOS SA.
1067 */
1068 public static final int ARCHOS = 0x00CF;
1069
1070 /*
1071 * Dexcom, Inc.
1072 */
1073 public static final int DEXCOM = 0x00D0;
1074
1075 /*
1076 * Polar Electro Europe B.V.
1077 */
1078 public static final int POLAR_ELECTRO_EUROPE = 0x00D1;
1079
1080 /*
1081 * Dialog Semiconductor B.V.
1082 */
1083 public static final int DIALOG_SEMICONDUCTOR = 0x00D2;
1084
1085 /*
1086 * Taixingbang Technology (HK) Co,. LTD.
1087 */
1088 public static final int TAIXINGBANG_TECHNOLOGY = 0x00D3;
1089
1090 /*
1091 * Kawantech.
1092 */
1093 public static final int KAWANTECH = 0x00D4;
1094
1095 /*
1096 * Austco Communication Systems.
1097 */
1098 public static final int AUSTCO_COMMUNICATION_SYSTEMS = 0x00D5;
1099
1100 /*
1101 * Timex Group USA, Inc.
1102 */
1103 public static final int TIMEX_GROUP_USA = 0x00D6;
1104
1105 /*
1106 * Qualcomm Technologies, Inc.
1107 */
1108 public static final int QUALCOMM_TECHNOLOGIES = 0x00D7;
1109
1110 /*
1111 * Qualcomm Connected Experiences, Inc.
1112 */
1113 public static final int QUALCOMM_CONNECTED_EXPERIENCES = 0x00D8;
1114
1115 /*
1116 * Voyetra Turtle Beach.
1117 */
1118 public static final int VOYETRA_TURTLE_BEACH = 0x00D9;
1119
1120 /*
1121 * txtr GmbH.
1122 */
1123 public static final int TXTR = 0x00DA;
1124
1125 /*
1126 * Biosentronics.
1127 */
1128 public static final int BIOSENTRONICS = 0x00DB;
1129
1130 /*
1131 * Procter & Gamble.
1132 */
1133 public static final int PROCTER_AND_GAMBLE = 0x00DC;
1134
1135 /*
1136 * Hosiden Corporation.
1137 */
1138 public static final int HOSIDEN = 0x00DD;
1139
1140 /*
1141 * Muzik LLC.
1142 */
1143 public static final int MUZIK = 0x00DE;
1144
1145 /*
1146 * Misfit Wearables Corp.
1147 */
1148 public static final int MISFIT_WEARABLES = 0x00DF;
1149
1150 /*
1151 * Google.
1152 */
1153 public static final int GOOGLE = 0x00E0;
1154
1155 /*
1156 * Danlers Ltd.
1157 */
1158 public static final int DANLERS = 0x00E1;
1159
1160 /*
1161 * Semilink Inc.
1162 */
1163 public static final int SEMILINK = 0x00E2;
1164
1165 /*
Herb Jellineka4733942010-08-10 13:17:43 -07001166 * You can't instantiate one of these.
1167 */
1168 private BluetoothAssignedNumbers() {
1169 }
1170
1171}