git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@319 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2008-06-19 13:14:32 +00:00
parent 1a5246e996
commit 3d8180d95a
7 changed files with 23 additions and 1 deletions

View File

@ -40,5 +40,8 @@ typedef uint32_t systime_t;
typedef int32_t cnt_t;
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */

View File

@ -40,5 +40,8 @@ typedef uint32_t systime_t;
typedef int32_t cnt_t;
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */

View File

@ -40,5 +40,8 @@ typedef uint32_t systime_t;
typedef int32_t cnt_t;
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */

View File

@ -40,5 +40,8 @@ typedef uint16_t systime_t;
typedef int8_t cnt_t;
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */

View File

@ -45,6 +45,9 @@ typedef uint16_t systime_t; /* System Time, recommended fastest unsigned
typedef int16_t cnt_t; /* Counter, recommended fastest signed.*/
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */

View File

@ -61,18 +61,22 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process,
order to allow linking with non-GLP code under certain conditions.
The license change will happen before the 1.0.0 release, we are almost
there, everything looks very stable now.
- Look into importing *or* implementing a TCP/IP stack and a File System.
- Evaluate other architectures for a possible ChibiOS/RT port. An important
selection parameter will be the availability of FOSS toolchains. Currently
we are evaluating the MicroBlaze.
- Creation of a reduced ChibiOS/RT kernel targeted to lesser 8bit micros and
educational purposes, the name will probably be ChibiOS/SX, we are still
discussing it.
- File System implementation as side project. Basic requirements: Thread safe,
concurrent accesses, proper buffers cache.
*****************************************************************************
*** Releases ***
*****************************************************************************
*** 0.6.6 ***
- Added the definitions for packed structures to the chtypes.h files.
*** 0.6.5 ***
- NEW: Web server demo for the AT91SAM7X256, the demo integrates the uIP
stack and its demo applications.

View File

@ -45,6 +45,9 @@ typedef uint32_t systime_t; /* System Time, recommended fastest unsigned
typedef int32_t cnt_t; /* Counter, recommended fastest signed.*/
#define INLINE inline
#define PACK_STRUCT_STRUCT __attribute__((packed))
#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_END
#endif /* _CHTYPES_H_ */