mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Rename the following folders: hal/lib/Athena -> hal/lib/athena hal/lib/Desktop -> hal/lib/sim hal/lib/Shared -> hal/lib/shared wpilibc/Athena -> wpilibc/athena wpilibc/simulation -> wpilibc/sim Windows users may need to run gradlew clean after updating.
18 lines
402 B
C
18 lines
402 B
C
// 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__
|