PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

54 Zeilen
2.0KB

  1. /* Copyright (c) 2010 Nordic Semiconductor. All Rights Reserved.
  2. *
  3. * The information contained herein is property of Nordic Semiconductor ASA.
  4. * Terms and conditions of usage are described in detail in NORDIC
  5. * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
  6. *
  7. * Licensees are granted free, non-transferable use of the information. NO
  8. * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
  9. * the file.
  10. *
  11. * $LastChangedRevision$
  12. */
  13. /**
  14. * @file
  15. *
  16. * @ingroup group_acilib
  17. *
  18. * @brief Internal prototype for acilib module.
  19. */
  20. #ifndef _acilib_H_
  21. #define _acilib_H_
  22. #define MSG_SET_LOCAL_DATA_BASE_LEN 2
  23. #define MSG_CONNECT_LEN 5
  24. #define MSG_BOND_LEN 5
  25. #define MSG_DISCONNECT_LEN 2
  26. #define MSG_BASEBAND_RESET_LEN 1
  27. #define MSG_WAKEUP_LEN 1
  28. #define MSG_SET_RADIO_TX_POWER_LEN 2
  29. #define MSG_GET_DEVICE_ADDR_LEN 1
  30. #define MSG_SEND_DATA_BASE_LEN 2
  31. #define MSG_DATA_REQUEST_LEN 2
  32. #define MSG_OPEN_REMOTE_PIPE_LEN 2
  33. #define MSG_CLOSE_REMOTE_PIPE_LEN 2
  34. #define MSG_DTM_CMD 3
  35. #define MSG_WRITE_DYNAMIC_DATA_BASE_LEN 2
  36. #define MSG_SETUP_CMD_BASE_LEN 1
  37. #define MSG_ECHO_MSG_CMD_BASE_LEN 1
  38. #define MSG_CHANGE_TIMING_LEN 9
  39. #define MSG_SET_APP_LATENCY_LEN 4
  40. #define MSG_CHANGE_TIMING_LEN_GAP_PPCP 1
  41. #define MSG_DIRECT_CONNECT_LEN 1
  42. #define MSG_SET_KEY_REJECT_LEN 2
  43. #define MSG_SET_KEY_PASSKEY_LEN 8
  44. #define MSG_SET_KEY_OOB_LEN 18
  45. #define MSG_ACK_LEN 2
  46. #define MSG_NACK_LEN 3
  47. #define MSG_BROADCAST_LEN 5
  48. #define MSG_OPEN_ADV_PIPES_LEN 9
  49. #endif /* _acilib_H_ */