wpilib-hal 0.1.1

Low-level bindings to WPILib's HAL. DO NOT USE THIS YET. THIS IS JUST TO SECURE THE NAME.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Describes the information needed to configure a DMA channel.
// Copyright (c) National Instruments 2008.  All Rights Reserved.

#include <stdint.h>

#ifndef __tDMAChannelDescriptor_h__
#define __tDMAChannelDescriptor_h__

struct tDMAChannelDescriptor
{
   uint32_t channel;
   uint32_t baseAddress;
   uint32_t depth;
   bool targetToHost;
};

#endif // __tDMAChannelDescriptor_h__