1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #pragma once
- #include "StdAfx.h"
- typedef enum {
- SIM_FIXED,
- SIM_SWEEP,
- SIM_STEP
- } SimDataTypes;
- public delegate void dRequestAckMsg(UCHAR* pucTxBuffer_);
- public delegate void dRequestBcastMsg(UCHAR* pucTxBuffer_);
- public delegate void dRequestUpdateMesgPeriod(USHORT usMesgPeriod_);
- public interface class ISimBase{
-
-
- UCHAR getDeviceType();
- UCHAR getTransmissionType();
- USHORT getTransmitPeriod();
- DOUBLE getTimerInterval();
-
- void onTimerTock(USHORT eventTime);
-
- void ANT_eventNotification(UCHAR eventCode, UCHAR* pcBuffer);
-
- System::Windows::Forms::Panel^ getSimSettingsPanel();
- System::Windows::Forms::Panel^ getSimTranslatedDisplay();
- };
|