mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Rename the following folders: hal/lib/Athena -> hal/lib/athena hal/lib/Desktop -> hal/lib/sim hal/lib/Shared -> hal/lib/shared wpilibc/Athena -> wpilibc/athena wpilibc/simulation -> wpilibc/sim Windows users may need to run gradlew clean after updating.
28 lines
712 B
C++
28 lines
712 B
C++
// Copyright (c) National Instruments 2008. All Rights Reserved.
|
|
|
|
#ifndef __tSystemInterface_h__
|
|
#define __tSystemInterface_h__
|
|
|
|
namespace nFPGA
|
|
{
|
|
|
|
class tSystemInterface
|
|
{
|
|
public:
|
|
tSystemInterface(){}
|
|
virtual ~tSystemInterface(){}
|
|
|
|
virtual const uint16_t getExpectedFPGAVersion()=0;
|
|
virtual const uint32_t getExpectedFPGARevision()=0;
|
|
virtual const uint32_t * const getExpectedFPGASignature()=0;
|
|
virtual void getHardwareFpgaSignature(uint32_t *guid_ptr, tRioStatusCode *status)=0;
|
|
virtual uint32_t getLVHandle(tRioStatusCode *status)=0;
|
|
virtual uint32_t getHandle()=0;
|
|
virtual void reset(tRioStatusCode *status)=0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __tSystemInterface_h__
|
|
|