Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame^] | 1 | /*----------------------------------------------------------------------------*/ |
| 2 | /* Copyright (c) FIRST 2008. All Rights Reserved. */ |
| 3 | /* Open Source Software - may be modified and shared by FRC teams. The code */ |
| 4 | /* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */ |
| 5 | /*----------------------------------------------------------------------------*/ |
| 6 | #pragma once |
| 7 | #pragma GCC diagnostic push |
| 8 | #pragma GCC diagnostic ignored "-Wpedantic" |
| 9 | #pragma GCC diagnostic ignored "-Wignored-qualifiers" |
| 10 | |
| 11 | #include <stdint.h> |
| 12 | |
| 13 | #include "FRC_FPGA_ChipObject/RoboRIO_FRC_ChipObject_Aliases.h" |
| 14 | #include "FRC_FPGA_ChipObject/tDMAChannelDescriptor.h" |
| 15 | #include "FRC_FPGA_ChipObject/tDMAManager.h" |
| 16 | #include "FRC_FPGA_ChipObject/tInterruptManager.h" |
| 17 | #include "FRC_FPGA_ChipObject/tSystem.h" |
| 18 | #include "FRC_FPGA_ChipObject/tSystemInterface.h" |
| 19 | |
| 20 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/nInterfaceGlobals.h" |
| 21 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAccel.h" |
| 22 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAccumulator.h" |
| 23 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAI.h" |
| 24 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAlarm.h" |
| 25 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAnalogTrigger.h" |
| 26 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAO.h" |
| 27 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tBIST.h" |
| 28 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tCounter.h" |
| 29 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tDIO.h" |
| 30 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tDMA.h" |
| 31 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tEncoder.h" |
| 32 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tGlobal.h" |
| 33 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tInterrupt.h" |
| 34 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tPower.h" |
| 35 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tPWM.h" |
| 36 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tRelay.h" |
| 37 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tSPI.h" |
| 38 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tSysWatchdog.h" |
| 39 | |
| 40 | // FIXME: these should not be here! |
| 41 | using namespace nFPGA; |
| 42 | using namespace nRoboRIO_FPGANamespace; |
| 43 | #pragma GCC diagnostic pop |