31 lines
626 B
C
31 lines
626 B
C
#ifndef __TEST_CONF__H__
|
|
#define __TEST_CONF__H__
|
|
|
|
#include "Sys.h"
|
|
#include "Device\Port.h"
|
|
#include "Device\Spi.h"
|
|
#include "TokenNet\TokenClient.h"
|
|
|
|
void TestSerial();
|
|
void TestAT45DB();
|
|
void TestFlash();
|
|
void TestCrc();
|
|
void TestADC();
|
|
void TestEnc28j60();
|
|
void TestEthernet();
|
|
void IRTest();
|
|
void TestPulsePort();
|
|
|
|
void TestTimer(OutputPort& leds);
|
|
void TestThread(OutputPort& leds);
|
|
void TestW5500(Spi* spi, Pin irq, Pin rst);
|
|
|
|
#include "Drivers\NRF24L01.h"
|
|
void TestNRF24L01();
|
|
NRF24L01* Create2401();
|
|
|
|
void TestMessage(OutputPort* leds);
|
|
void InvokeTest(TokenClient * client);
|
|
|
|
#endif
|