blob: ac0fe71f91c040d5e90d89702263e574d0dd0e39 [file] [log] [blame]
Brian Silverman26e4e522015-12-17 01:56:40 -05001/*----------------------------------------------------------------------------*/
Brian Silverman1a675112016-02-20 20:42:49 -05002/* Copyright (c) FIRST 2008-2016. All Rights Reserved. */
Brian Silverman26e4e522015-12-17 01:56:40 -05003/* Open Source Software - may be modified and shared by FRC teams. The code */
Brian Silverman1a675112016-02-20 20:42:49 -05004/* must be accompanied by the FIRST BSD license file in the root directory of */
5/* the project. */
Brian Silverman26e4e522015-12-17 01:56:40 -05006/*----------------------------------------------------------------------------*/
Brian Silverman1a675112016-02-20 20:42:49 -05007
Brian Silverman26e4e522015-12-17 01:56:40 -05008#pragma once
9#pragma GCC diagnostic push
10#pragma GCC diagnostic ignored "-Wpedantic"
11#pragma GCC diagnostic ignored "-Wignored-qualifiers"
12
13#include <stdint.h>
14
15#include "FRC_FPGA_ChipObject/RoboRIO_FRC_ChipObject_Aliases.h"
16#include "FRC_FPGA_ChipObject/tDMAChannelDescriptor.h"
17#include "FRC_FPGA_ChipObject/tDMAManager.h"
18#include "FRC_FPGA_ChipObject/tInterruptManager.h"
19#include "FRC_FPGA_ChipObject/tSystem.h"
20#include "FRC_FPGA_ChipObject/tSystemInterface.h"
21
22#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/nInterfaceGlobals.h"
23#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAccel.h"
24#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAccumulator.h"
25#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAI.h"
26#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAlarm.h"
27#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAnalogTrigger.h"
28#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAO.h"
29#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tBIST.h"
30#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tCounter.h"
31#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tDIO.h"
32#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tDMA.h"
33#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tEncoder.h"
34#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tGlobal.h"
35#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tInterrupt.h"
36#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tPower.h"
37#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tPWM.h"
38#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tRelay.h"
39#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tSPI.h"
40#include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tSysWatchdog.h"
41
42// FIXME: these should not be here!
43using namespace nFPGA;
44using namespace nRoboRIO_FPGANamespace;
45#pragma GCC diagnostic pop