Brian Silverman | f7f267a | 2017-02-04 16:16:08 -0800 | [diff] [blame^] | 1 | /*----------------------------------------------------------------------------*/ |
| 2 | /* Copyright (c) FIRST 2008-2017. 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 the root directory of */ |
| 5 | /* the project. */ |
| 6 | /*----------------------------------------------------------------------------*/ |
| 7 | |
| 8 | #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/nRoboRIO_FPGANamespace/nInterfaceGlobals.h" |
| 17 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAI.h" |
| 18 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAO.h" |
| 19 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAccel.h" |
| 20 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAccumulator.h" |
| 21 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAlarm.h" |
| 22 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tAnalogTrigger.h" |
| 23 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tBIST.h" |
| 24 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tCounter.h" |
| 25 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tDIO.h" |
| 26 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tDMA.h" |
| 27 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tEncoder.h" |
| 28 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tGlobal.h" |
| 29 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tInterrupt.h" |
| 30 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tPWM.h" |
| 31 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tPower.h" |
| 32 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tRelay.h" |
| 33 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tSPI.h" |
| 34 | #include "FRC_FPGA_ChipObject/nRoboRIO_FPGANamespace/tSysWatchdog.h" |
| 35 | #include "FRC_FPGA_ChipObject/tDMAChannelDescriptor.h" |
| 36 | #include "FRC_FPGA_ChipObject/tDMAManager.h" |
| 37 | #include "FRC_FPGA_ChipObject/tInterruptManager.h" |
| 38 | #include "FRC_FPGA_ChipObject/tSystem.h" |
| 39 | #include "FRC_FPGA_ChipObject/tSystemInterface.h" |
| 40 | |
| 41 | namespace hal { |
| 42 | using namespace nFPGA; |
| 43 | using namespace nRoboRIO_FPGANamespace; |
| 44 | } // namespace hal |
| 45 | |
| 46 | #pragma GCC diagnostic pop |