mirror of
https://github.com/StuckAtPrototype/Racer.git
synced 2024-10-20 22:49:48 +03:00
16 lines
323 B
C
16 lines
323 B
C
#pragma once
|
|
|
|
#include "esp_log.h"
|
|
#include "host/ble_hs.h"
|
|
#include "nimble/ble.h"
|
|
#include "nimble/nimble_port.h"
|
|
#include "nimble/nimble_port_freertos.h"
|
|
|
|
#define LOG_TAG_GAP "gap"
|
|
|
|
static const char device_name[] = "Racer3";
|
|
|
|
void advertise();
|
|
void reset_cb(int reason);
|
|
void sync_cb(void);
|
|
void host_task(void *param); |