Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame] | 1 | /*----------------------------------------------------------------------------*/ |
Brian Silverman | 1a67511 | 2016-02-20 20:42:49 -0500 | [diff] [blame^] | 2 | /* Copyright (c) FIRST 2008-2016. All Rights Reserved. */ |
Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame] | 3 | /* Open Source Software - may be modified and shared by FRC teams. The code */ |
Brian Silverman | 1a67511 | 2016-02-20 20:42:49 -0500 | [diff] [blame^] | 4 | /* must be accompanied by the FIRST BSD license file in the root directory of */ |
| 5 | /* the project. */ |
Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame] | 6 | /*----------------------------------------------------------------------------*/ |
Brian Silverman | 1a67511 | 2016-02-20 20:42:49 -0500 | [diff] [blame^] | 7 | |
Brian Silverman | 26e4e52 | 2015-12-17 01:56:40 -0500 | [diff] [blame] | 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/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! |
| 43 | using namespace nFPGA; |
| 44 | using namespace nRoboRIO_FPGANamespace; |
| 45 | #pragma GCC diagnostic pop |