api-hal-bt.c 200 B

123456789101112
  1. #include <api-hal-bt.h>
  2. void api_hal_bt_init() {
  3. }
  4. void api_hal_bt_dump_state(string_t buffer) {
  5. string_cat_printf(buffer, "BLE unsupported");
  6. }
  7. bool api_hal_bt_is_alive() {
  8. return false;
  9. }