mirror of
https://github.com/markqvist/OpenModem.git
synced 2024-10-01 03:15:46 -04:00
17 lines
265 B
C
17 lines
265 B
C
#ifndef BT_H
|
|
#define BT_H
|
|
|
|
#include <avr/io.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include "device.h"
|
|
#include "util/time.h"
|
|
#include "hardware/Serial.h"
|
|
|
|
void bluetooth_init(void);
|
|
bool bluetooth_enabled(void);
|
|
|
|
|
|
#endif |