OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [io/] [serial/] [v2_0/] [tests/] [serial4.c] - Blame information for rev 27

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//        serial4.c
4
//
5
//        Test serial configuration changing
6
//
7
//==========================================================================
8
//####ECOSGPLCOPYRIGHTBEGIN####
9
// -------------------------------------------
10
// This file is part of eCos, the Embedded Configurable Operating System.
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under
14
// the terms of the GNU General Public License as published by the Free
15
// Software Foundation; either version 2 or (at your option) any later version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//==========================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):     jskov
44
// Contributors:  jskov
45
// Date:          1999-03-17
46
// Description:   Test the configuration capabilities of the serial driver.
47
// Requirements:  This test requires the ser_filter on the host side.
48
// 
49
// To Do:
50
//  This test should do a full test of the configuration combinations.
51
//  This will get possible with proper test_change_config protocol
52
//  implementation.
53
//####DESCRIPTIONEND####
54
 
55
#include <pkgconf/system.h>
56
 
57
#include <cyg/infra/testcase.h>         // test macros
58
#include <cyg/infra/cyg_ass.h>          // assertion macros
59
 
60
// Package requirements
61
#if defined(CYGPKG_IO_SERIAL) && defined(CYGPKG_KERNEL)
62
 
63
#include <pkgconf/kernel.h>
64
 
65
// Package option requirements
66
#if defined(CYGFUN_KERNEL_API_C)
67
 
68
#include <cyg/hal/hal_arch.h>           // CYGNUM_HAL_STACK_SIZE_TYPICAL
69
#include <cyg/kernel/kapi.h>
70
unsigned char stack[CYGNUM_HAL_STACK_SIZE_TYPICAL];
71
cyg_thread thread_data;
72
cyg_handle_t thread_handle;
73
 
74
#include "ser_test_protocol.inl"
75
 
76
//---------------------------------------------------------------------------
77
// Serial test main function.
78
void
79
serial_test( void )
80
{
81
    cyg_io_handle_t ser_handle;
82
 
83
    test_open_ser(&ser_handle);
84
 
85
    // We need the filter for this test.
86
    test_ping(ser_handle);
87
 
88
    // Test multiple configurations (defined in the protocol file).
89
    // FIXME: This will get replaced with a test over the full configuration
90
    // permutation space.
91
    {
92
        int i;
93
        int count = sizeof(test_configs) / sizeof(cyg_ser_cfg_t);
94
        char msg[] = "This is a test\n";
95
        int msglen = strlen(msg);
96
 
97
        for (i = 0; i < count; i++){
98
            if (ENOERR == change_config(ser_handle, &test_configs[i])) {
99
                test_binary(ser_handle,    128, MODE_EOP_ECHO);
100
                test_binary(ser_handle,    256, MODE_NO_ECHO);
101
                Tcyg_io_write(ser_handle, msg, &msglen);
102
            }
103
        }
104
    }
105
 
106
    CYG_TEST_PASS_FINISH("serial4 test OK");
107
}
108
 
109
void
110
cyg_start(void)
111
{
112
    CYG_TEST_INIT();
113
    cyg_thread_create(10,                   // Priority - just a number
114
                      (cyg_thread_entry_t*)serial_test,         // entry
115
                      0,                    // 
116
                      "serial_thread",     // Name
117
                      &stack[0],            // Stack
118
                      CYGNUM_HAL_STACK_SIZE_TYPICAL,           // Size
119
                      &thread_handle,       // Handle
120
                      &thread_data          // Thread data structure
121
        );
122
    cyg_thread_resume(thread_handle);
123
    cyg_scheduler_start();
124
}
125
 
126
#else // CYGFUN_KERNEL_API_C
127
#define N_A_MSG "Needs kernel C API"
128
#endif
129
 
130
#else // CYGPKG_IO_SERIAL && CYGPKG_KERNEL
131
#define N_A_MSG "Needs IO/serial and Kernel"
132
#endif
133
 
134
#ifdef N_A_MSG
135
void
136
cyg_start( void )
137
{
138
    CYG_TEST_INIT();
139
    CYG_TEST_NA( N_A_MSG);
140
}
141
#endif // N_A_MSG
142
 
143
// EOF serial4.c

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.