syscfg.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. syscfg.vals:
  18. # Disable not used GAP roles (we only do non-connectable
  19. # advertising here)
  20. BLE_ROLE_BROADCASTER: 1
  21. BLE_ROLE_CENTRAL: 0
  22. BLE_ROLE_OBSERVER: 0
  23. BLE_ROLE_PERIPHERAL: 0
  24. # Disable unused eddystone featdure.
  25. BLE_EDDYSTONE: 0
  26. # Enable Extended Advertising
  27. BLE_EXT_ADV: 1
  28. # Max advertising data size
  29. BLE_EXT_ADV_MAX_SIZE: 1650
  30. # Number of multi-advertising instances. Note that due
  31. # to historical reasonds total number of advertising
  32. # instances is BLE_MULTI_ADV_INSTANCES + 1 as instance
  33. # 0 is always available
  34. BLE_MULTI_ADV_INSTANCES: 4
  35. # Controller uses msys pool for storing advertising data and scan responses.
  36. # Since we advertise a lot of data (~4k in total) at the same time we need
  37. # to increase block count.
  38. MSYS_1_BLOCK_COUNT: 24