373a8c32b2
git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@55 9fe90eed-be63-e94b-8204-d34ff4c2ff93
89 lines
2.7 KiB
C
89 lines
2.7 KiB
C
/* ---------------------------------------------------------------------------
|
|
* main.c (c) 2008 Micro-key bv
|
|
* ---------------------------------------------------------------------------
|
|
* Micro-key bv
|
|
* Industrieweg 28, 9804 TG Noordhorn
|
|
* Postbus 92, 9800 AB Zuidhorn
|
|
* The Netherlands
|
|
* Tel: +31 594 503020
|
|
* Fax: +31 594 505825
|
|
* Email: support@microkey.nl
|
|
* Web: www.microkey.nl
|
|
* ---------------------------------------------------------------------------
|
|
* Description: main file to QUA_2475 Test application
|
|
* ---------------------------------------------------------------------------
|
|
* Version(s): 0.1, Dez 11, 2008, MMi
|
|
* Creation.
|
|
* ---------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
* System include files
|
|
* ---------------------------------------------------------------------------
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
* Application include files
|
|
* ---------------------------------------------------------------------------
|
|
*/
|
|
#include "bus.h"
|
|
#include "BusProtocol.h"
|
|
#include "protocolfunctions.h"
|
|
|
|
#include "digital_test.h"
|
|
#include "smc4000io.h"
|
|
/* ---------------------------------------------------------------------------
|
|
* Local constant and macro definitions
|
|
* ---------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
* Global variable definitions
|
|
* ---------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
* Local variable definitions
|
|
* ---------------------------------------------------------------------------
|
|
*/
|
|
|
|
/* ---------------------------------------------------------------------------
|
|
* Local function definitions
|
|
* ---------------------------------------------------------------------------
|
|
*/
|
|
|
|
int main()
|
|
{
|
|
int result;
|
|
UINT16 testdata;
|
|
|
|
IO_CPU_Init();
|
|
|
|
testdata = 1;
|
|
pwrrelmbWrite (IOCTL_interface, & testdata);
|
|
printf ("dout_Write returned: %d\n", result);
|
|
testdata = 0xFF;
|
|
dout0_15Write (IOCTL_interface, & testdata);
|
|
printf ("dout_Write returned: %d\n", result);
|
|
|
|
// /* Initialisation section */
|
|
protocolInit(THISDEVICENUMBER, MAXDEVICENUMBER);
|
|
|
|
for (;;)
|
|
{
|
|
// printf ("Hallo\n");
|
|
fflush( stdout );
|
|
usleep ( 1000 );
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|