Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
uwb_link/uwb_link_mbed.h
- Committer:
- bhepp
- Date:
- 2016-04-06
- Revision:
- 3:bfc4928cd279
- Parent:
- 2:502d1a5f79a0
File content as of revision 3:bfc4928cd279:
//
// Simple message protocol for UWB.
//
// Created by Benjamin Hepp on 02.04.16.
// Copyright (c) 2016 Benjamin Hepp. All rights reserved.
//
#pragma once
#include <ait_link/ait_link_mbed.h>
#include "uwb_link.h"
#ifdef __MBED__
namespace ait {
class UWBLinkMbed : public UWBLink {
AITLinkMbed ait_link_;
public:
UWBLinkMbed(BufferedSerial* serial, int buffer_size = 1024)
: UWBLink(&ait_link_, buffer_size), ait_link_(serial) {
}
};
}
#endif // __MBED__