mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* 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. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#ifndef __ChipObject_h__
|
|
#define __ChipObject_h__
|
|
|
|
#include <vxWorks.h>
|
|
#include "ChipObject/NiRio.h"
|
|
|
|
#include "ChipObject/tAccumulator.h"
|
|
#include "ChipObject/tAI.h"
|
|
#include "ChipObject/tAlarm.h"
|
|
#include "ChipObject/tAnalogTrigger.h"
|
|
#include "ChipObject/tCounter.h"
|
|
#include "ChipObject/tDIO.h"
|
|
#include "ChipObject/tDMA.h"
|
|
//#include "ChipObject/tDMAManager.h"
|
|
#include "ChipObject/tEncoder.h"
|
|
#include "ChipObject/tGlobal.h"
|
|
#include "ChipObject/tInterrupt.h"
|
|
#include "ChipObject/tInterruptManager.h"
|
|
#include "ChipObject/tSolenoid.h"
|
|
#include "ChipObject/tSPI.h"
|
|
#include "ChipObject/tWatchdog.h"
|
|
|
|
using namespace nFPGA;
|
|
using namespace nFRC_2012_1_6_4;
|
|
|
|
#endif
|