Removed dependency to ch.h.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5049 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
9754c3a6ce
commit
12e34ee390
|
@ -26,7 +26,15 @@
|
|||
* @{
|
||||
*/
|
||||
|
||||
#include "ch.h"
|
||||
#include <stdint.h>
|
||||
|
||||
#if !defined(FALSE)
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
#if !defined(TRUE)
|
||||
#define TRUE (!FALSE)
|
||||
#endif
|
||||
|
||||
typedef void (*funcp_t)(void);
|
||||
typedef funcp_t * funcpp_t;
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
- FIX: Fixed PHY powerdown issues not fixed (bug 3596911).
|
||||
- NEW: Added an abstract file system interface written in C++, no
|
||||
implementations yet.
|
||||
TODO: Create a descendant interface for hyerarchical file systems.
|
||||
TODO: Create a descendant interface for hierarchical file systems.
|
||||
TODO: Create a FatFS wrapper implementing the interface and using a server
|
||||
thread for synchronization.
|
||||
TODO: Create an implementation over a read-only file system in code space.
|
||||
|
@ -110,6 +110,8 @@
|
|||
- NEW: Added EXT driver to the STM32F3xx platform.
|
||||
- NEW: Improved the STM32 EXT driver to support more than 32 channels.
|
||||
- NEW: Added support for Olimex board STM32-LCD.
|
||||
- CHANGE: Removed dependency between crt0.c (GCC-ARMCMx) and the kernel
|
||||
header ch.h.
|
||||
|
||||
*** 2.5.1 ***
|
||||
- FIX: Fixed typo in chOQGetEmptyI() macro (bug 3595910)(backported to 2.2.10
|
||||
|
|
Loading…
Reference in New Issue