1 |
786 |
skrzyp |
2007-08-28 Andrew Lunn
|
2 |
|
|
|
3 |
|
|
* tests/can_overrun1.c (can0_thread): Fix the length of the data
|
4 |
|
|
in the message. Add a delay to allow the CAN device to process
|
5 |
|
|
the packets.
|
6 |
|
|
* test/can_txcevent.c: (can0_thread): Add a delay to allow the CAN device
|
7 |
|
|
to process the packet.s
|
8 |
|
|
* src/loop_can.c (FIFO_SIZE): Changed to one more than the TX
|
9 |
|
|
queue size. If it is less, the loopback tests don't pass because
|
10 |
|
|
packets don't get transmitted.
|
11 |
|
|
|
12 |
|
|
2007-08-24 Andrew Lunn
|
13 |
|
|
|
14 |
|
|
* doc/synth_test.ecm: Import file for running the tests on synth.
|
15 |
|
|
|
16 |
|
|
2007-08-24 Alexey Shusharin
|
17 |
|
|
|
18 |
|
|
* tests/can_callback.c: Added test of CAN callback on event
|
19 |
|
|
* cdl/can_loop.cdl: Added can_callback.c into tests list
|
20 |
|
|
|
21 |
|
|
2007-08-09 Andrew Lunn
|
22 |
|
|
|
23 |
|
|
* src/loop_can.c: Change all CYGPKG_IO_CAN_* to CYGPKG_DEVS_CAN_*
|
24 |
|
|
so that the loopback driver gets compiled. It looks like
|
25 |
|
|
at some point in its life it used to live in io/can instead
|
26 |
|
|
of its current location in dev/can/loop.
|
27 |
|
|
|
28 |
|
|
2007-03-23 Uwe Kindler
|
29 |
|
|
|
30 |
|
|
* cdl/can_loop.cd: Changed naming of various options from
|
31 |
|
|
xxx_IO_CAN_LOOP into xxx_DEVS_CAN_LOOP
|
32 |
|
|
|
33 |
|
|
2007-03-23 Uwe Kindler
|
34 |
|
|
|
35 |
|
|
* cdl/can_loop.cdl: Driver now implements the interfaces
|
36 |
|
|
CYGINT_IO_CAN_TX_EVENTS, CYGINT_IO_CAN_STD_CAN_ID,
|
37 |
|
|
CYGINT_IO_CAN_EXT_CAN_ID.
|
38 |
|
|
Removed CYGPKG_IO_CAN_LOOP_CFLAGS_ADD and
|
39 |
|
|
CYGPKG_IO_CAN_LOOP_CFLAGS_REMOVE because they had no function.
|
40 |
|
|
|
41 |
|
|
* src/loop_can.c: Added missing function loop_can_get_config
|
42 |
|
|
to make the driver build properly.
|
43 |
|
|
|
44 |
|
|
* tests: Did some fixes and cleanups for all test cases to make them
|
45 |
|
|
work properly with the changes in the CAN I/O layer.
|
46 |
|
|
|
47 |
|
|
2005-08-15 Uwe Kindler
|
48 |
|
|
|
49 |
|
|
* Loopback CAN driver created
|
50 |
|
|
|
51 |
|
|
//===========================================================================
|
52 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
53 |
|
|
// -------------------------------------------
|
54 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
55 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
56 |
|
|
//
|
57 |
|
|
// This program is free software; you can redistribute it and/or modify
|
58 |
|
|
// it under the terms of the GNU General Public License as published by
|
59 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
60 |
|
|
// later version.
|
61 |
|
|
//
|
62 |
|
|
// This program is distributed in the hope that it will be useful, but
|
63 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
64 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
65 |
|
|
// General Public License for more details.
|
66 |
|
|
//
|
67 |
|
|
// You should have received a copy of the GNU General Public License
|
68 |
|
|
// along with this program; if not, write to the
|
69 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
70 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
71 |
|
|
// -------------------------------------------
|
72 |
|
|
// ####GPLCOPYRIGHTEND####
|
73 |
|
|
//===========================================================================
|