bleh/include/BLEh.h
2023-06-24 19:30:24 +02:00

21 lines
365 B
C

#pragma once
#include <stdint.h>
#include "host/ble_gatt.h"
#define CHAR_PRESENTATION_FORMAT_SIZE 7
struct char_pres_format {
uint8_t format;
uint8_t exponent;
uint16_t unit;
uint8_t namespc;
uint8_t descrH;
uint8_t descrL;
};
void initBLE(char* name);
void ble_advertise(void);
void set_gatt_services(struct ble_gatt_svc_def* svcs, uint16_t num);