logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

bluetooth.h (2161B)


  1. /*
  2. * Copyright 2022
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #pragma once
  18. #include <stdint.h>
  19. #include "report.h"
  20. /**
  21. * \brief Initialize the Bluetooth system.
  22. */
  23. void bluetooth_init(void);
  24. /**
  25. * \brief Perform housekeeping tasks.
  26. */
  27. void bluetooth_task(void);
  28. /**
  29. * \brief Detects if Bluetooth is connected.
  30. *
  31. * \return `true` if connected, `false` otherwise.
  32. */
  33. bool bluetooth_is_connected(void);
  34. /**
  35. * \brief Detects if `bluetooth_send_nkro` should be used over `bluetooth_send_keyboard`.
  36. */
  37. bool bluetooth_can_send_nkro(void);
  38. /**
  39. * \brief Get current LED state.
  40. */
  41. uint8_t bluetooth_keyboard_leds(void);
  42. /**
  43. * \brief Send a keyboard report.
  44. *
  45. * \param report The keyboard report to send.
  46. */
  47. void bluetooth_send_keyboard(report_keyboard_t *report);
  48. /**
  49. * \brief Send a nkro report.
  50. *
  51. * \param report The nkro report to send.
  52. */
  53. void bluetooth_send_nkro(report_nkro_t *report);
  54. /**
  55. * \brief Send a mouse report.
  56. *
  57. * \param report The mouse report to send.
  58. */
  59. void bluetooth_send_mouse(report_mouse_t *report);
  60. /**
  61. * \brief Send a consumer usage.
  62. *
  63. * \param usage The consumer usage to send.
  64. */
  65. void bluetooth_send_consumer(uint16_t usage);
  66. /**
  67. * \brief Send a system usage.
  68. *
  69. * \param usage The system usage to send.
  70. */
  71. void bluetooth_send_system(uint16_t usage);
  72. /**
  73. * \brief Send a raw_hid packet.
  74. *
  75. * \param data A pointer to the buffer to be sent. Always 32 bytes in length.
  76. * \param length The length of the buffer. Always 32.
  77. */
  78. void bluetooth_send_raw_hid(uint8_t *data, uint8_t length);