升级单元测试代码到最新

This commit is contained in:
nnhy 2015-07-27 03:57:24 +00:00
parent e4cf54d644
commit 2565a8752c
5 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#include "AT45DB.h"
#include "Drivers\AT45DB.h"
const byte Tx_Buffer[] = "STM32F10x SPI Firmware Library Example: communication with an AT45DB SPI FLASH";
Spi* _spi;

View File

@ -1,5 +1,5 @@
#include "Sys.h"
#include "Enc28j60.h"
#include "Drivers\Enc28j60.h"
#include "SerialPort.h"
#include "TinyIP\TinyIP.h"
#include "TinyIP\Arp.h"

View File

@ -1,6 +1,6 @@
#include "Sys.h"
#include "SerialPort.h"
#include "NRF24L01.h"
#include "Drivers\NRF24L01.h"
#include "TinyNet\Message.h"
#include "TinyNet\TinyClient.h"

View File

@ -1,5 +1,5 @@
#include "Sys.h"
#include "NRF24L01.h"
#include "Drivers\NRF24L01.h"
#include "conf.h"

View File

@ -3,6 +3,7 @@
#include "Sys.h"
#include "Port.h"
#include "Spi.h"
void TestSerial();
void TestAT45DB();