Remove unused DMA Handler types.

This commit is contained in:
Jared Boone 2016-06-22 11:22:28 -07:00
parent 3cdce88e5d
commit 1010e6a234
3 changed files with 0 additions and 6 deletions

View File

@ -31,8 +31,6 @@
namespace baseband { namespace baseband {
namespace dma { namespace dma {
using Handler = void (*)();
void init(); void init();
void configure( void configure(
baseband::sample_t* const buffer_base, baseband::sample_t* const buffer_base,

View File

@ -30,8 +30,6 @@ namespace rf {
namespace rssi { namespace rssi {
namespace dma { namespace dma {
using Handler = void (*)();
void init(); void init();
void allocate(size_t buffer_count, size_t items_per_buffer); void allocate(size_t buffer_count, size_t items_per_buffer);

View File

@ -32,8 +32,6 @@ namespace dma {
using sample_t = uint32_t; using sample_t = uint32_t;
using buffer_t = buffer_t<sample_t>; using buffer_t = buffer_t<sample_t>;
using Handler = void (*)();
void init(); void init();
void allocate(); void allocate();