2013-12-15 18:30:16 -05:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* Copyright (c) FIRST 2008. All Rights Reserved. */
|
|
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
2014-05-02 17:54:01 -04:00
|
|
|
#pragma once
|
2013-12-15 18:30:16 -05:00
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include "ChipObject/RoboRIO_FRC_ChipObject_Aliases.h"
|
2014-02-25 18:43:40 -05:00
|
|
|
#include "ChipObject/tDMAManager.h"
|
|
|
|
|
#include "ChipObject/tInterruptManager.h"
|
|
|
|
|
#include "ChipObject/tSystem.h"
|
|
|
|
|
#include "ChipObject/tSystemInterface.h"
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2014-02-25 18:43:40 -05:00
|
|
|
#include "ChipObject/nInterfaceGlobals.h"
|
2013-12-15 18:30:16 -05:00
|
|
|
#include "ChipObject/tAccel.h"
|
|
|
|
|
#include "ChipObject/tAccumulator.h"
|
|
|
|
|
#include "ChipObject/tAI.h"
|
|
|
|
|
#include "ChipObject/tAlarm.h"
|
|
|
|
|
#include "ChipObject/tAnalogTrigger.h"
|
|
|
|
|
#include "ChipObject/tAO.h"
|
|
|
|
|
#include "ChipObject/tBIST.h"
|
|
|
|
|
#include "ChipObject/tCounter.h"
|
|
|
|
|
#include "ChipObject/tDIO.h"
|
|
|
|
|
#include "ChipObject/tDMA.h"
|
|
|
|
|
#include "ChipObject/tEncoder.h"
|
|
|
|
|
#include "ChipObject/tGlobal.h"
|
|
|
|
|
#include "ChipObject/tInterrupt.h"
|
|
|
|
|
#include "ChipObject/tPower.h"
|
|
|
|
|
#include "ChipObject/tPWM.h"
|
|
|
|
|
#include "ChipObject/tRelay.h"
|
2014-02-25 18:43:40 -05:00
|
|
|
#include "ChipObject/tSPI.h"
|
|
|
|
|
#include "ChipObject/tSysWatchdog.h"
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2014-05-02 17:54:01 -04:00
|
|
|
// FIXME: these should not be here!
|
2013-12-15 18:30:16 -05:00
|
|
|
using namespace nFPGA;
|
|
|
|
|
using namespace nRoboRIO_FPGANamespace;
|