public inbox for ecos-cvs@sourceware.org
help / color / mirror / Atom feed
* ecos/packages/io/can/current ChangeLog cdl/io_ ...
@ 2006-08-25 11:56 gthomas
0 siblings, 0 replies; 4+ messages in thread
From: gthomas @ 2006-08-25 11:56 UTC (permalink / raw)
To: ecos-cvs
CVSROOT: /cvs/ecos
Module name: ecos
Changes by: gthomas@sourceware.org 2006-08-25 11:56:11
Modified files:
packages/io/can/current: ChangeLog
packages/io/can/current/cdl: io_can.cdl
Log message:
Fix CDL parenthood - from Jochen Gerster
^ permalink raw reply [flat|nested] 4+ messages in thread
* ecos/packages/io/can/current ChangeLog cdl/io_ ...
@ 2007-03-26 10:43 asl
0 siblings, 0 replies; 4+ messages in thread
From: asl @ 2007-03-26 10:43 UTC (permalink / raw)
To: ecos-cvs
CVSROOT: /cvs/ecos
Module name: ecos
Changes by: asl@sourceware.org 2007-03-26 11:43:36
Modified files:
packages/io/can/current: ChangeLog
packages/io/can/current/cdl: io_can.cdl
packages/io/can/current/doc: can_driver_doc.html
packages/io/can/current/include: can.h canio.h
packages/io/can/current/src: can.c
Added files:
packages/io/can/current/tests: can_filter.c can_hdi.c can_load.c
can_remote.c can_test_aux.inl
can_tx.c
Log message:
* cdl/io_can.cdl: Added several interfaces for implementation by
device drivers.
Moved several configuration options from device drivers to the
generic CAN driver. With this design a device driver does not
need to provide all configuration options in its CDL file - it
simply needs to implement the provided interfaces. The drawback
of this decicsion is, that it is not possible to control these
options independently for several CAN devices. (But most platforms
will have only 1 channel)
Added configuration option CYGBLD_IO_CAN_EXTRA_TESTS. This option
enables the build of the interactive CAN tests.
* test/can_filter: Added interactive message filtering test
* test/can_hdi: Added interactive hardware description interface
test
* test/can_load: Added interactive message handling (reception,
transmission) test.
* test/can_remote: Added interactive remote response buffer test
* test/can_tx: Added interactive basic TX test. All tests are not
part of the eCos test framework because they are interactive. That
means, they require interaction with another user controlled
CAN node.
* include/can.h: Added identifier masks for standard and extended
identifiers.
Added the line #include CYGDAT_IO_CAN_DEVICE_INL. This enables a
device driver to provide an own device inline file. In this inline
file the driver may define own data types for CAN messages (for
internal storage of CAN messages (see AT91SAM7 CAN driver))
* include/canio.h: Added baudrate CYGNUM_CAN_KBAUD_AUTO - support of
automatic baudrate detection if a driver supports such a feature.
Added state CYGNUM_CAN_STATE_CONFIG and mode CYGNUM_CAN_MODE_CONFIG.
The application may use these identifiers to set the CAN device into
a state where it is safe to add/remove/configure message buffers.
Added union data type cyg_can_msg_data. With this data type a 4 byte
alignment of message data is guaranteed, an byte, word and dword
access to the data is possible and an assignment of two CAN datas are
possible now.
cyg_can_message now uses cyg_can_msg_data union for CAN data.
Replaced SW-Filt flag by autobaud flag in HDI.
Added CAN message access macros for read/write acces of CAN message
structures. These macros hide implementation of CAN message from
application.
* src/can.c: Added support for device driver defined CAN message
data types
^ permalink raw reply [flat|nested] 4+ messages in thread
* ecos/packages/io/can/current ChangeLog cdl/io_ ...
@ 2007-08-13 7:36 asl
0 siblings, 0 replies; 4+ messages in thread
From: asl @ 2007-08-13 7:36 UTC (permalink / raw)
To: ecos-cvs
CVSROOT: /cvs/ecos
Module name: ecos
Changes by: asl@sourceware.org 2007-08-13 07:36:34
Modified files:
packages/io/can/current: ChangeLog
packages/io/can/current/cdl: io_can.cdl
packages/io/can/current/include: can.h canio.h
packages/io/can/current/src: can.c
Log message:
* cdl/io_can.cdl: Added option CYGOPT_IO_CAN_SUPPORT_CALLBACK
* include/canio.h: Added struct cyg_can_callback_cfg for setting
callback configurations.
* include/can.h: Added declaration and initialization of callback
configuration in struct can_channel.
* src/can.c: Added callback configuration changing and
application function call.
^ permalink raw reply [flat|nested] 4+ messages in thread
* ecos/packages/io/can/current ChangeLog cdl/io_ ...
@ 2012-02-09 21:16 sergeig
0 siblings, 0 replies; 4+ messages in thread
From: sergeig @ 2012-02-09 21:16 UTC (permalink / raw)
To: ecos-cvs
CVSROOT: /cvs/ecos
Module name: ecos
Changes by: sergeig@sourceware.org 2012-02-09 21:16:49
Modified files:
packages/io/can/current: ChangeLog
packages/io/can/current/cdl: io_can.cdl
packages/io/can/current/doc: can.sgml can_driver_doc.html
packages/io/can/current/include: can.h canio.h
packages/io/can/current/src: can.c
Log message:
* cdl/io_can.cdl: support for add/remove compiler flags
* doc/can.sgml, doc/can_driver_doc.html: updated doc reflecting API
changes (range/mask filtering, listen-only mode, return values for
xmt_msg/rcv_event, new flags).
* include/can.h: given in a match the types of function pointers for
can_callbacks_t according to the changes made in can.c.
* include/canio.h: flags field in event enlarged to 32 bits to fit
new events 'CYGNUM_CAN_EVENT_ERR_ACTIVE' and
'CYGNUM_CAN_EVENT_OVERRUN_RX_HW'. Made a 'flag' typedef.
cyg_can_event fields reordered so flags size change keeps events the
same size. Defined new filtering capabilities (range/mask). New
convenience macro CYGNUM_CAN_EVENT_ALL. New listen-only mode.
* src/can.c: can_rcv_event() and can_xmt_msg() now returns cyg_bool
(were 'void'). flags using cyg_can_event_flags_t type.
[ Bugzilla 1001453 ]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-02-09 21:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-08-25 11:56 ecos/packages/io/can/current ChangeLog cdl/io_ gthomas
2007-03-26 10:43 asl
2007-08-13 7:36 asl
2012-02-09 21:16 sergeig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).