diff -r f45fd4cd3832 -r 34654679f262 doc/doxygen/html/portsaccess_8h-source.html --- a/doc/doxygen/html/portsaccess_8h-source.html Fri Jul 06 10:53:15 2007 +0200 +++ b/doc/doxygen/html/portsaccess_8h-source.html Mon Jul 16 08:56:03 2007 +0200 @@ -18,7 +18,7 @@
00001 /* 00002 This file is part of CanFestival, a library implementing CanOpen Stack. 00003 @@ -54,21 +54,21 @@ 00033 */ 00034 00035 -00036 extern volatile unsigned char _io_ports[]; +00036 extern volatile unsigned char _io_ports[]; 00037 00038 /* To use for a 8 bits access */ -00039 #define IO_PORTS_8(adr) \ +00039 #define IO_PORTS_8(adr) \ 00040 _io_ports[adr] 00041 00042 /* To use for a 16 bits access */ 00043 /* Example : IO_PORTS_16(CAN0IDAR1)= 0xABCD; 00044 will put AB at @CAN0IDAR1 and CD at @CAN0IDAR1 + 1 00045 */ -00046 #define IO_PORTS_16(adr) \ +00046 #define IO_PORTS_16(adr) \ 00047 *((unsigned volatile short*) (_io_ports + (adr))) 00048 00049 #endif -